Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Commit

Permalink
transfer ownership to artisanry
Browse files Browse the repository at this point in the history
  • Loading branch information
faustbrian committed Jun 4, 2019
1 parent 46eaea9 commit cd1a3c1
Show file tree
Hide file tree
Showing 20 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

All Notable changes to `faustbrian/laravel-service-provider` will be documented in this file.
All Notable changes to `artisanry/service-provider` will be documented in this file.

## 1.0.2 (30/11/2016)
- Add new path to MigrationPublisher
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -2,7 +2,7 @@

Contributions are **welcome** and will be fully **credited**.

We accept contributions via Pull Requests on [Github](https://github.com/faustbrian/laravel-service-provider).
We accept contributions via Pull Requests on [Github](https://github.com/artisanry/service-provider).

## Pull Requests

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) Brian Faust <hello@brianfaust.me>
Copyright (c) Brian Faust <hello@basecode.sh>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
16 changes: 8 additions & 8 deletions README.md
@@ -1,16 +1,16 @@
# Laravel Service Provider

[![Build Status](https://img.shields.io/travis/faustbrian/Laravel-Service-Provider/master.svg?style=flat-square)](https://travis-ci.org/faustbrian/Laravel-Service-Provider)
[![PHP from Packagist](https://img.shields.io/packagist/php-v/faustbrian/laravel-service-provider.svg?style=flat-square)]()
[![Latest Version](https://img.shields.io/github/release/faustbrian/Laravel-Service-Provider.svg?style=flat-square)](https://github.com/faustbrian/Laravel-Service-Provider/releases)
[![License](https://img.shields.io/packagist/l/faustbrian/Laravel-Service-Provider.svg?style=flat-square)](https://packagist.org/packages/faustbrian/Laravel-Service-Provider)
[![Build Status](https://img.shields.io/travis/artisanry/Service-Provider/master.svg?style=flat-square)](https://travis-ci.org/artisanry/Service-Provider)
[![PHP from Packagist](https://img.shields.io/packagist/php-v/artisanry/service-provider.svg?style=flat-square)]()
[![Latest Version](https://img.shields.io/github/release/artisanry/Service-Provider.svg?style=flat-square)](https://github.com/artisanry/Service-Provider/releases)
[![License](https://img.shields.io/packagist/l/artisanry/Service-Provider.svg?style=flat-square)](https://packagist.org/packages/artisanry/Service-Provider)

## Installation

Require this package, with [Composer](https://getcomposer.org/), in the root directory of your project.

``` bash
$ composer require faustbrian/laravel-service-provider
$ composer require artisanry/service-provider
```

## Usage
Expand All @@ -20,7 +20,7 @@ $ composer require faustbrian/laravel-service-provider

namespace Vendor\Package;

class ServiceProvider extends \BrianFaust\ServiceProvider\ServiceProvider
class ServiceProvider extends \Artisanry\ServiceProvider\ServiceProvider
{
public function boot()
{
Expand Down Expand Up @@ -55,7 +55,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

## Security

If you discover a security vulnerability within this package, please send an e-mail to hello@brianfaust.me. All security vulnerabilities will be promptly addressed.
If you discover a security vulnerability within this package, please send an e-mail to hello@basecode.sh. All security vulnerabilities will be promptly addressed.

## Credits

Expand All @@ -64,4 +64,4 @@ If you discover a security vulnerability within this package, please send an e-m

## License

[MIT](LICENSE) © [Brian Faust](https://brianfaust.me)
[MIT](LICENSE) © [Brian Faust](https://basecode.sh)
12 changes: 6 additions & 6 deletions composer.json
@@ -1,12 +1,12 @@
{
"name": "faustbrian/laravel-service-provider",
"name": "artisanry/service-provider",
"description": "DRY Service Provider for Laravel 5 Packages",
"keywords": ["laravel", "framework", "Laravel-Service-Provider", "Laravel Service Provider", "Brian Faust", "faustbrian"],
"keywords": ["laravel", "framework", "Laravel-Service-Provider", "Laravel Service Provider"],
"license": "MIT",
"authors": [{
"name": "Brian Faust",
"email": "hello@brianfaust.me",
"homepage": "https://brianfaust.me"
"email": "hello@basecode.sh",
"homepage": "https://basecode.sh"
}],
"require": {
"php": "^7.1",
Expand All @@ -19,12 +19,12 @@
},
"autoload": {
"psr-4": {
"BrianFaust\\ServiceProvider\\": "src/"
"Artisanry\\ServiceProvider\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BrianFaust\\Tests\\ServiceProvider\\": "tests"
"Artisanry\\Tests\\ServiceProvider\\": "tests"
}
},
"config": {
Expand Down
4 changes: 2 additions & 2 deletions src/AbstractServiceProvider.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider;
namespace Artisanry\ServiceProvider;

use Illuminate\Contracts\Foundation\Application;

Expand Down
4 changes: 2 additions & 2 deletions src/Loader/Loader.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Loader;
namespace Artisanry\ServiceProvider\Loader;

use Illuminate\Filesystem\Filesystem;

Expand Down
4 changes: 2 additions & 2 deletions src/Loader/RouteLoader.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Loader;
namespace Artisanry\ServiceProvider\Loader;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Loader/TranslationLoader.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Loader;
namespace Artisanry\ServiceProvider\Loader;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Loader/ViewLoader.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Loader;
namespace Artisanry\ServiceProvider\Loader;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/AssetPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/ConfigPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/MigrationPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/Publisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use Illuminate\Filesystem\Filesystem;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/RoutePublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/SeedPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/TranslationPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions src/Publisher/ViewPublisher.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\ServiceProvider\Publisher;
namespace Artisanry\ServiceProvider\Publisher;

use InvalidArgumentException;

Expand Down
4 changes: 2 additions & 2 deletions tests/AbstractTestCase.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\Tests\ServiceProvider;
namespace Artisanry\Tests\ServiceProvider;

abstract class AbstractTestCase extends \PHPUnit_Framework_TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/ExampleTest.php
Expand Up @@ -6,13 +6,13 @@
/*
* This file is part of Laravel Service Provider.
*
* (c) Brian Faust <hello@brianfaust.me>
* (c) Brian Faust <hello@basecode.sh>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace BrianFaust\Tests\ServiceProvider;
namespace Artisanry\Tests\ServiceProvider;

class ExampleTest extends AbstractTestCase
{
Expand Down

0 comments on commit cd1a3c1

Please sign in to comment.