mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-05 15:10:49 +00:00
* remove legacy laravel generator * initial setup of my vision for the laravel generator * update the php laravel samples * update php laravel docs * moved api validation into controller and handle edge cases presented by sample generation * updated samples * added php-laravel to github workflow php8 and removed php7 workflow as it only contained old laravel * preemptive work to support union types as soon as php serde supports them * updated samples * update templates in accordance to samples output * fix pipelines and update samples * correct serde version * fixed phpunit execution and updated samples * added named routes * remove * readd samples --------- Co-authored-by: gijs.blanken@futureof.finance <gijs.blanken@finly.nl> Co-authored-by: William Cheng <wing328hk@gmail.com>
32 lines
630 B
JSON
32 lines
630 B
JSON
{
|
|
"name": "openapitools/petstore",
|
|
"description": "",
|
|
"keywords": [
|
|
"openapi",
|
|
"php",
|
|
"sdk",
|
|
"api"
|
|
],
|
|
"homepage": "https://openapi-generator.tech",
|
|
"license": "unlicense",
|
|
"authors": [
|
|
{
|
|
"name": "OpenAPI",
|
|
"homepage": "https://openapi-generator.tech"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=8.1",
|
|
"laravel/framework": "^10.0",
|
|
"crell/serde": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"OpenAPI\\Server\\" : ""
|
|
}
|
|
}
|
|
}
|