Files
ubicacion-patasalada/composer.json

51 lines
1.3 KiB
JSON

{
"name": "flightphp/skeleton",
"description": "A Flight PHP framework skeleton app to get your new projects up and running ASAP",
"keywords": [
"microframework",
"rest",
"restapi",
"simple",
"easy",
"lite",
"boilerplate",
"skeleton"
],
"homepage": "https://docs.flightphp.com",
"license": "MIT",
"authors": [
{
"name": "n0nag0n",
"email": "n0nag0n@sky-9.com",
"role": "lead"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"flightphp/core": "^3.17.4",
"flightphp/runway": "^0.2 || ^1.2.5",
"tracy/tracy": "^2.11"
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
}
},
"scripts": {
"start": "php -S localhost:8000 -t public",
"post-create-project-cmd": [
"@php -r \"copy('app/config/config_sample.php', 'app/config/config.php');\"",
"@php -r \"mkdir('app/models/');\"",
"@php -r \"mkdir('app/utils/');\"",
"@php -r \"mkdir('app/cache/');\"",
"@php -r \"mkdir('app/log/');\""
]
},
"require-dev": {
"flightphp/tracy-extensions": "^0.1 || ^0.2.7",
"phpstan/phpstan": "^2.1"
}
}