elattar / prepare
Configure Newly Created Laravel Projects
v5.0
2025-03-03 11:56 UTC
Requires
- php: ^8.2|^8.3
- illuminate/support: ^11.0|^12.0
Requires (Dev)
- laravel/pint: dev-main
- orchestra/testbench: ^9.0|^10.0
- dev-master
- v5.0
- v4.5.2
- v4.5.1
- v4.5
- v4.4
- v4.3
- v4.2
- v4.0
- v3.5
- v3.3
- v3.2
- v3.1.51
- v3.1.50
- v3.1.49
- v3.1.48
- v3.1.47
- v3.1.45
- v3.1.44
- v3.1.43
- v3.1.42
- v3.1.41
- v3.1.4
- v3.1.3
- v3.1.2
- v3.1.1
- v3.1
- v2.7.1
- v2.7
- v2.6
- v2.5
- v2.4
- v2.3.31
- v2.3.5
- v2.3.4.0
- v2.3.3
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.1
- v2.2.0
- V2.1.0
- v2.0
- v1.0.1
- 1.0.0
This package is auto-updated.
Last update: 2025-03-31 12:06:48 UTC
README
Configure newly created laravel project using simple package
- First We Need to install the package
composer require elattar/prepare
- Run
composer update
and 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
,commitlint
andhusky
php artisan elattar:initialize
- if you don't want to install
commitlint
package to lint you git commits, you can pass--no-commitlint
flag
php artisan elattar:initialize --no-commitlint
- To install advanced packages like
log-viewer
you can pass--advanced
flag
php artisan elattar:initialize --advanced
- Then We have to publish package assets, files
php artisan vendor:publish --tag=elattar-prepare --force
- finally copy middlewares, files, dump composer
php artisan elattar:publish-prepare-files