-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "peroxide/api-skeleton",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Application\\": "app/"
}
},
"authors": [
{
"name": "Leonardo Tumadjian"
}
],
"require": {
"php": "^8.2",
"slim/slim": "^4.13",
"openswoole/core": "22.1.4",
"peroxide/container": "^1.1",
"robmorgan/phinx": "^0.16.0"
},
"require-dev": {
"openswoole/ide-helper": "^22.1",
"phpunit/phpunit": "^11.1",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.9",
"phpmd/phpmd": "^2.15"
},
"scripts": {
"phinx": "phinx",
"migrate": "phinx migrate",
"rollback": "phinx rollback",
"test": "phpunit",
"stan": "phpstan",
"fix": "phpcbf -p --standard=PSR12 app/",
"sniff": "phpcs --standard=PSR12 app/",
"md": "phpmd app/ text cleancode,codesize,controversial,design,naming,unusedcode"
}
}