-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
66 lines (66 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "robiningelbrecht/wca-rest-api",
"keywords": [
"WCA",
"Rest",
"API"
],
"license": "MIT",
"authors": [
{
"name": "Robin Ingelbrecht",
"email": "ingelbrecht_robin@hotmail.com"
}
],
"require": {
"php": "^8.2",
"ext-intl": "*",
"ext-json": "*",
"ausi/slug-generator": "^1.1",
"doctrine/dbal": "^3.6",
"doctrine/orm": "^2.12",
"lcobucci/clock": "^2.2",
"league/flysystem": "^3.15",
"php-di/php-di": "^7.0",
"php-di/slim-bridge": "^3.3",
"ramsey/uuid": "^4.7",
"slim/psr7": "^1.6",
"slim/slim": "^4.11",
"symfony/cache": "^6.1",
"symfony/console": "^6.1",
"symfony/finder": "^6.1",
"symfony/process": "^6.3",
"thecodingmachine/safe": "^2.2",
"twig/twig": "^3.4",
"vlucas/phpdotenv": "^5.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.1",
"robiningelbrecht/phpunit-pretty-print": "^1.2.0",
"spatie/phpunit-snapshot-assertions": "^5.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"lint:fix": " ./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"phpstan:run": " ./vendor/bin/phpstan analyse --memory-limit=1G",
"phpstan:generate-baseline": " ./vendor/bin/phpstan analyse --generate-baseline --memory-limit=1G",
"snapshots:cleanup": "find . -name __snapshots__ -type d -prune -exec rm -rf {} \\; ",
"post-create-project-cmd": [
"cp ./.env.dist ./.env"
]
}
}