netcreaties / laravel-modulize-api
Creating easy to use modules without having to configure them.
0.0.1
2019-06-07 07:29 UTC
Requires (Dev)
- matthewbdaly/artisan-standalone: 0.0.*
- mockery/mockery: ~1.0
- orchestra/testbench: ~3.7.1
- orchestra/testbench-browser-kit: ~3.7.1
- php-coveralls/php-coveralls: ^2.1
- phpstan/phpstan: ^0.10.5
- phpunit/phpunit: ^7.0
- psy/psysh: ^0.9.8
- sebastian/phpcpd: ^4.0
- squizlabs/php_codesniffer: ^3.3
This package is auto-updated.
Last update: 2024-11-07 20:09:34 UTC
README
Laravel Modulize API
This package gives you the ability to create synchronization files and prevent you from having to write one time use commands when you've got for example: A database structure change that will require you to modulize-api the old structure data with the new structure.
Documentation
Installation
The best way to install this package is through your terminal via Composer.
Run the following command from your projects root
composer require netcreaties/laravel-modulize-api
Laravel 5.5+
This package supports package discovery.
Getting started
Publish config
Publishing the config will enable you to overwrite some of the settings this package uses. For example you can define where modules should be stored.
php artisan vendor:publish --provider="LaravelModulize\\Providers\\ModulizeServiceProvider" --tag="config"