andersonfelipev / laravel-app
Provides backwards compatibility for app:name command in the latest Laravel release.
                                    Fund package maintenance!
                                                                            
                                                                                                                                        TheDragonCode
                                                                                    
                                                                            
                                                                                                                                        Open Collective
                                                                                    
                                                                            
                                                                                                                                        boosty.to/dragon-code
                                                                                    
                                                                            
                                                                                                                                        yoomoney.ru/to/410012608840929
                                                                                    
                                                                
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 1
pkg:composer/andersonfelipev/laravel-app
Requires
- php: ^7.2 || ^8.0
- illuminate/console: ^6.0 || ^7.0 || ^8.0 || ^9.0
- illuminate/filesystem: ^6.0 || ^7.0 || ^8.0 || ^9.0
- illuminate/support: ^6.0 || ^7.0 || ^8.0 || ^9.0
README
This package provides a backwards compatibility layer for Laravel app:name command in the latest Laravel release.
We recommend using the basic
Appnamespace. This will avoid possible collisions when connecting different packages.
Installation
To get the latest version, simply require the project using Composer:
composer require andersonfelipev/laravel-app --dev
Instead, you may of course manually update your require block and run composer update if you so choose:
{
    "require-dev": {
        "andersonfelipev/laravel-app": "^1.0"
    }
}
Using
Set the application namespace by console command:
php artisan app:name <name>
License
This package is released under the MIT License.
The code is taken from the Laravel Framework.