-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.5 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.5 KB
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
48
49
50
51
52
{
"name": "vendor/task-api",
"version": "1.0",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": "^8.4",
"symfony/dotenv": "^7.2",
"php-di/php-di": "^7.0",
"slim/slim": "^4.14",
"slim/psr7": "^1.7",
"doctrine/orm": "^3.3",
"doctrine/migrations": "^3.8",
"symfony/cache": "^7.2",
"symfony/console": "^7.2",
"symfony/validator": "^7.2",
"netresearch/jsonmapper": "^5.0",
"zircote/swagger-php": "^4.11"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^2.0",
"symplify/easy-coding-standard": "^12.3",
"phpunit/phpunit": "^11.0"
},
"scripts": {
"build-dev": [
"composer install",
"composer dump-autoload",
"@migrations-migrate"
],
"phpstan": "phpstan analyse -c phpstan.neon",
"standards": "vendor/bin/ecs check",
"standards-fix": "vendor/bin/ecs check --fix",
"tests": "phpunit tests",
"check-all": [
"@standards",
"@phpstan"
],
"migrations-migrate": "php bin/console migrations:migrate -v --no-interaction",
"migrations-diff": "php bin/console migrations:diff -v --no-interaction",
"generate-open-api-schema": "vendor/bin/openapi src -o openapi.json"
}
}