-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2.18 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2.18 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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": "artur@agentejo.com"
}
],
"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.3.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": "^2.0.0",
"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-php84": "^1.30",
"symfony/polyfill-php85": "^1.33",
"webonyx/graphql-php": "^15.0",
"zircote/swagger-php": "^5.0",
"symfony/console": "^5.3",
"symfony/process": "^6.2",
"jumbojett/openid-connect-php": "^1.0.2"
},
"config": {
"vendor-dir": "lib/vendor",
"optimize-autoloader": true,
"prefer-dist": true,
"lock": false,
"ignore-platform-reqs": true,
"no-dev": true,
"platform": {
"php": "8.3.0"
}
},
"autoload": {
"classmap": [
"lib/"
]
},
"extra": {
"aws/aws-sdk-php": [
"S3"
]
}
}