-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 1015 Bytes
/
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
{
"name": "robertkleinschuster/zenith-starter",
"description": "Starter project for Zenith.",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Robert Kleinschuster",
"email": "github@robs.social",
"homepage": "https://www.robs.social",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"robertkleinschuster/zenith": "v0.0.1"
},
"require-dev": {
"phpunit/phpunit": "11.0.4",
"phpstan/phpstan": "1.10.59"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "tests"
}
},
"scripts": {
"phpunit": "phpunit tests",
"phpstan": "phpstan analyse routes public --level 6",
"configure-app": "configure-app",
"add-route": "add-route",
"post-create-project-cmd": "configure-app",
"post-update-cmd": "configure-app",
"dev": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 -t public cli-router.php"
]
}
}