by AMBERSIVE KG / Manuel Pirker-Ihl (manuel.pirker-ihl@ambersive.com / @leganz on Twitter)
The main goal of this project is to provide a tested environment for a fast api endpoint creation. The project will automatically create the required php files and ensure that also a minimum quality standard is provided.
This packages will help you create:
based on some simple yaml schema files.
This packages also comes with some out-of-the-box endpoint implemmentations (restful endpoints) like
Changes of each version can be read in CHANGELOG.md.
Currenty supported databases are
Please be aware that some functionality will not be there due to restrictions in the database technology (e.g. relations resolving).
This package is using prettier to automatically format files via command line. NodeJs is a must have requirement.
composer require ambersive/api
Before you can process please delete all default migration files. (eg. for users table). Please notice that the following command will move some files from your config folder into a "ori" folder as backup, cause this package will overwrite some setting in the basic auth.php config file.
php artisan api:init
Then migrate the databse to be sure all the required tables are migrated.
php artisan migrate
This package provides some standard implementations of the
and some basic endpoints for permissions, roles and users. Some of the basic endpoints can be replaced and customized. For further information please read the documentation.
This package also includes some seeds incl. user seeding. During the setup process seed files will be created in resources/seedfiles.
Schemafiles and most of the required files are stored in specfic folders. Via the ambersive-api config file all of those paths can be set. The following command will create the required folders. You will not need to run this command if you run the api:init command.
php artisan api:prepare
Further information about this package can be found here.