-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.38 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
{
"name": "lugce/saveme",
"type": "project",
"description": "Stray animal report",
"license": "CC 4.0",
"require": {
"php": "^7.4 || ^8.0",
"ext-gettext": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-zip": "*",
"cakephp/chronos": "^2.2",
"cakephp/database": "^4.2",
"cakephp/validation": "^4.2",
"fig/http-message-util": "^1.1",
"lulco/phoenix": "^1.9",
"nyholm/psr7": "^1.4",
"nyholm/psr7-server": "^1.0",
"odan/session": "^5.1",
"php-di/php-di": "^6.3",
"selective/array-reader": "^1.1",
"selective/basepath": "^2.0",
"selective/validation": "^1.1",
"slim/php-view": "^3.1",
"slim/psr7": "^1.4",
"slim/slim": "4.*",
"slim/twig-view": "^3.2",
"symfony/console": "^5.3",
"symfony/polyfill-uuid": "^1.23",
"symfony/yaml": "^5.3",
"twig/twig": "^3.3",
"vlucas/phpdotenv": "~3.6",
"ext-fileinfo": "*"
},
"require-dev": {
"dg/bypass-finals": "^1.3",
"phpstan/phpstan": "^0.12.91",
"phpunit/phpunit": "^9.5",
"selective/test-traits": "^1.1",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Support/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
}
}