-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.38 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.38 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
53
54
{
"name": "claude/slim-tds",
"description": "Slim-based TDS (Traffic Distribution System)",
"type": "project",
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.4",
"geoip2/geoip2": "^3.0",
"mobiledetect/mobiledetectlib": "^4.8",
"php-di/php-di": "^7.0",
"php-di/slim-bridge": "^3.4",
"ramsey/uuid": "^4.7",
"respect/validation": "^2.3",
"robmorgan/phinx": "^0.16",
"slim/psr7": "^1.7",
"slim/slim": "^4.14",
"symfony/console": "^7.1",
"symfony/process": "^7.1",
"symfony/translation": "^7.1",
"symfony/yaml": "^7.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-arch": "^4.0",
"pestphp/pest-plugin-browser": "^4.0",
"phpstan/phpstan": "^1.12",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/Shared/View/Helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"stan": "phpstan analyse"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable"
}