khattab / prepare
Configure Newly Created Laravel Projects
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/khattab/prepare
Requires
- php: ^8.2|^8.3
- illuminate/support: ^11.0|^12.0
Requires (Dev)
- laravel/pint: dev-main
- orchestra/testbench: ^9.0|^10.0
README
Configure newly created laravel project using simple package
- First We Need to install the package
composer require khattab/prepare
- Run
composer updateand typey
composer update
- Initialize the newly created project by pushing the helpers
- This Command will install the development packages that helps us like
laravel telescope,laravel modules,fast paginate,commitlintandhusky
php artisan khattab:initialize
- if you don't want to install
commitlintpackage to lint you git commits, you can pass--no-commitlintflag
php artisan khattab:initialize --no-commitlint
- To install advanced packages like
log-vieweryou can pass--advancedflag
php artisan khattab:initialize --advanced
- Then We have to publish package assets, files
php artisan vendor:publish --tag=khattab-prepare --force
- finally copy middlewares, files, dump composer
php artisan khattab:publish-prepare-files