https://github.com/noud/laravel-api-platform
REST conform OpenAPI back end in SaaS Laravel with code generation from ER model.
https://github.com/noud/laravel-api-platform
Last synced: 8 months ago
JSON representation
REST conform OpenAPI back end in SaaS Laravel with code generation from ER model.
- Host: GitHub
- URL: https://github.com/noud/laravel-api-platform
- Owner: noud
- License: mit
- Created: 2020-08-26T16:54:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-01-07T16:52:57.000Z (over 5 years ago)
- Last Synced: 2025-01-30T15:28:19.699Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 45.9 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Generate [API-Platform](http://api-platform.com) compatible [front end](http://en.wikipedia.org/wiki/Front_end_and_back_end)s from [ER model](http://en.wikipedia.org/wiki/Entity%E2%80%93relationship_model)
This Laravel PHP package is [automatic programming](http://en.wikipedia.org/wiki/Automatic_programming) from ER model to [API](http://en.wikipedia.org/wiki/API) [CRUD](http://en.wikipedia.org/wiki/Create,_read,_update_and_delete) [back end](http://en.wikipedia.org/wiki/Front_end_and_back_end).
The resulting back end is partly API-Platform compatible so there front end [client generator component](http://api-platform.com/docs/client-generator) works.
* [RESTful](http://en.wikipedia.org/wiki/Representational_state_transfer) [REST](http://en.wikipedia.org/wiki/REST)
* [JSON](http://en.wikipedia.org/wiki/JSON)
* [Swagger](http://swagger.io)
* [React](http://reactjs.org)
* [CRA](http://create-react-app.dev)
- [Redux](http://redux.js.org) [PWA](http://en.wikipedia.org/wiki/Progressive_web_applications) [demo](http://github.com/noud/react-swagger-laravel-api-platform-demo)
## Workflow
```
composer install noud/laravel-api-platform
```
Use [erd-js](https://github.com/noud/erd-js) to transform the .er to React.js Entity-relationship diagram front end .json.
```
cd ../erd-js && npm transform
```
Import in React.js Entity-relationship diagram front end
Export Laravel databases migrations
```
# install generator
php artisan infyom:publish
php artisan vendor:publish --provider="Appointer\Swaggervel\SwaggervelServiceProvider"
# install swaggervel
php artisan vendor:publish --tag=public
php artisan vendor:publish --tag=config
php artisan vendor:publish --tag=views
# migrate database
php artisan migrate
# generate Models and Swagger API end-points
php artisan api-platform:generate
# generate Entity Relationship Diagram
php artisan generate:erd
```
## Depends on packages
* [CORS Middleware for Laravel](https://github.com/fruitcake/laravel-cors)
* [InfyOm Laravel Generator](http://github.com/infyomlabs/laravel-generator)
* [Swagger Generator](http://github.com/infyomlabs/swagger-generator)
* [Swaggervel](http://github.com/appointer/swaggervel)
* [Laravel/Lumen schema builder](http://github.com/Agontuk/schema-builder)
# [📁](http://github.com/noud)