-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
44 lines (44 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
{
"name": "flightphp/docs",
"description": "The documentation for the Flight PHP micro framework.",
"homepage": "https://docs.flightphp.com",
"license": "MIT",
"authors": [
{
"name": "n0nag0n",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"erusev/parsedown": "^1.7",
"flightphp/cache": "^1.0",
"flightphp/core": "^3.13",
"latte/latte": "^3.0",
"tracy/tracy": "^2.10"
},
"config": {
"process-timeout": 0,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"pre-install-cmd": [
"composer check-platform-reqs"
],
"pre-update-cmd": [
"composer check-platform-reqs"
],
"start": "[ -x \"$(command -v php8.2)\" ] && php8.2 -S localhost:8000 -t public || php -S localhost:8000 -t public",
"rector": "rector"
},
"require-dev": {
"flightphp/tracy-extensions": "^0.2.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"rector/rector": "^2.0"
}
}