-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcomposer.json
50 lines (46 loc) · 1.32 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
{
"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": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8080 index.php"
]
},
"require": {
"php": "^8.0.0",
"ext-json": "*",
"phpmailer/phpmailer": "^6.4",
"claviska/simpleimage": "^3.6",
"league/flysystem": "^3.0",
"firebase/php-jwt": "^6.0",
"mongodb/mongodb": "^1.10",
"maennchen/zipstream-php": "^0.5.2",
"colinodell/json5": "^2.2",
"robthree/twofactorauth": "^1.8",
"bacon/bacon-qr-code": "^2.0",
"symfony/polyfill-mbstring": "^1.22",
"symfony/polyfill-php81": "^1.22",
"webonyx/graphql-php": "^15.0",
"zircote/swagger-php": "^4.5.1",
"guzzlehttp/guzzle": "^7.0",
"symfony/console": "^5.3"
},
"config": {
"vendor-dir": "lib/vendor",
"optimize-autoloader": true,
"prefer-dist": true,
"lock": false,
"ignore-platform-reqs": true
}
}