-
Notifications
You must be signed in to change notification settings - Fork 53
/
composer.json
74 lines (68 loc) · 2.06 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
{
"name": "cockpit-hq/cockpit",
"type": "project",
"description": "Cockpit Content Platform",
"keywords": ["cms", "headless", "api", "cockpit"],
"homepage": "https://getcockpit.com/",
"license": "MIT",
"authors": [
{
"name": "Artur Heinze",
"email": "[email protected]"
}
],
"scripts": {
"pre-autoload-dump": "Aws\\Script\\Composer\\Composer::removeUnusedServices",
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 index.php"
],
"git-pull-all-rebase": "find . -type d -name .git -execdir sh -c 'echo \"\\n=== $(basename $(pwd)) ===\"; git pull --rebase' \\;"
},
"require": {
"php": "^8.2.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-zip": "*",
"phpmailer/phpmailer": "^6.4",
"guzzlehttp/guzzle": "^7.4.5",
"claviska/simpleimage": "^4.0",
"ksubileau/color-thief-php": "^2.0",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"firebase/php-jwt": "^6.0",
"mongodb/mongodb": "^1.10",
"maennchen/zipstream-php": "^3.1.0",
"colinodell/json5": "^2.2",
"robthree/twofactorauth": "^3.0",
"bacon/bacon-qr-code": "^3.0",
"symfony/polyfill-mbstring": "^1.22",
"symfony/polyfill-php83": "^1.22",
"symfony/polyfill-php84": "^1.30",
"webonyx/graphql-php": "^15.0",
"zircote/swagger-php": "^4.5.1",
"symfony/console": "^5.3",
"symfony/process": "^6.2",
"doctrine/annotations": "^2.0"
},
"config": {
"vendor-dir": "lib/vendor",
"optimize-autoloader": true,
"prefer-dist": true,
"lock": false,
"ignore-platform-reqs": true,
"no-dev": true
},
"autoload": {
"classmap": ["lib/"]
},
"extra": {
"aws/aws-sdk-php": [
"S3"
]
}
}