-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 952 Bytes
/
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
{
"name": "vanilla/garden-sites",
"description": "Package containing interfaces and implementations for local and hosted vanilla forums sites management and definitions.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.0",
"vimeo/psalm": "^5.14",
"symfony/cache": "^5.4"
},
"license": "proprietary",
"autoload": {
"psr-4": {
"Garden\\Sites\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Garden\\Sites\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Adam Charron",
"email": "[email protected]"
}
],
"require": {
"vanilla/garden-http": "^2.8",
"psr/http-message": "^1.0.1",
"ext-json": "*",
"php": ">=8.0",
"vanilla/garden-utils": "^1.0.1",
"symfony/cache-contracts": "^2.5",
"firebase/php-jwt": "^6.10"
}
}