Package Data | |
---|---|
Maintainer Username: | matthewbdaly |
Maintainer Contact: | matthewbdaly@gmail.com (Matthew Daly) |
Package Create Date: | 2018-01-08 |
Package Last Update: | 2018-01-09 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-15 15:10:49 |
Package Statistics | |
---|---|
Total Downloads: | 6 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Boilerplate for Laravel packages. Use it as a starting point for your own Laravel packages.
Includes PHPUnit and PHPCodeSniffer configuration, as well as a known good Travis CI configuration and a couple of base test cases. Uses orchestra/testbench
as the basis of the provided base test.
Also includes my Artisan Standalone package as a development dependency. As a result, you should be able to run Artisan commands as follows:
vendor/bin/artisan make:model Example
composer create-project matthewbdaly/laravel-package-boilerplate <YOUR_NEW_PACKAGE_DIRECTORY>
This will generate a starting boilerplate for your app. You'll want to update your composer.json
with your required namespace and other details - you can do this by running vendor\bin\artisan app:name
.