-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.23 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
{
"name": "robocoder/app",
"description": "base application for new roles",
"keywords": [
],
"type": "project",
"license": "proprietary",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Anthon Pang",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.3",
"ext-ctype": "*",
"ext-curl": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-zip": "*",
"geoip2/geoip2": "^2.12",
"nikic/fast-route": "^1.3",
"pimple/pimple": "^3.5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"instaclick/php-webdriver": "2.0.0-RC5"
},
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"preferred-install": {
"*": "dist"
},
"process-timeout": 3600,
"secure-http": false,
"sort-packages": true,
"discard-changes": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
}
}