-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 1.28 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
{
"name": "ampersandtarski/prototype",
"description": "Package for the backend application of an Ampersand prototype",
"license": "MIT",
"authors": [
{
"name": "Michiel Stornebrink",
"email": "[email protected]",
"homepage": "https://github.com/Michiel-s"
}
],
"config": {
"vendor-dir": "backend/lib"
},
"require": {
"php": ">=8.3",
"ext-mysqli": "*",
"ext-curl": "*",
"ext-gd": "*",
"ext-fileinfo": "*",
"ext-zip": "*",
"slim/slim": "^3.0",
"monolog/monolog": "^1.18",
"phpoffice/phpspreadsheet": "^1.20.0",
"psr/cache": "^3.0",
"psr/log": "^1.1",
"symfony/event-dispatcher": "^7",
"symfony/serializer": "^7",
"symfony/filesystem": "^7",
"easyrdf/easyrdf": "^1.0",
"league/flysystem": "^1.1",
"ramsey/uuid": "^4.1",
"symfony/yaml": "^7.1"
},
"autoload": {
"psr-4": {
"Ampersand\\": "backend/src/Ampersand"
},
"files": [
"backend/src/Ampersand/Misc/functions.php"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.2",
"phan/phan": "^5.3"
},
"prefer-stable": true
}