-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
47 lines (47 loc) · 1.2 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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": "[email protected]",
"role": "lead"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"flightphp/core": "^3.0",
"flightphp/runway": "^0.2 || ^1.1",
"tracy/tracy": "^2.9"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8000 -t public",
"post-create-project-cmd": [
"@php -r \"symlink('vendor/bin/runway', 'runway');\"",
"@php -r \"copy('app/config/config_sample.php', 'app/config/config.php');\"",
"@php -r \"mkdir('app/middlewares/');\"",
"@php -r \"mkdir('app/cache/');\"",
"@php -r \"mkdir('app/log/');\""
]
},
"require-dev": {
"flightphp/tracy-extensions": "^0.1 || ^0.2"
}
}