forked from arabcoders/watchstate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.95 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
67
68
69
70
71
72
73
74
{
"type": "project",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"platform-check": true,
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": ">=8.1",
"ext-pdo": "*",
"ext-mbstring": "*",
"ext-ctype": "*",
"ext-curl": "*",
"ext-sqlite3": "*",
"monolog/monolog": "^2.3",
"symfony/console": "^6.0",
"symfony/cache": "^6.0",
"symfony/yaml": "^6.0",
"symfony/process": "^6.0",
"symfony/http-client": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/lock": "^6.0",
"league/container": "^4.0",
"psr/http-client": "^1.0",
"psr/simple-cache": "^3.0",
"nyholm/psr7": "^1.5",
"nyholm/psr7-server": "^1.0",
"laminas/laminas-httphandlerrunner": "^2.0",
"dragonmantank/cron-expression": "^3.0",
"halaxa/json-machine": "^1.0"
},
"suggest": {
"ext-redis": "For caching"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/var-dumper": "^6.0",
"perftools/php-profiler": "^1.0",
"phpunit/phpunit": "^9.5"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"autoload": {
"files": [
"src/Libs/helpers.php"
],
"psr-4": {
"App\\": "src/"
}
},
"replace": {
"symfony/polyfill-php54": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php82": "*",
"symfony/polyfill-php83": "*"
}
}