-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1 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
{
"name": "roadiz/abstract-api-theme",
"description": "Exposes Roadiz content as a public REST API.",
"type": "library",
"require": {
"php":">=7.4",
"roadiz/roadiz": "~1.7.0",
"roadiz/rozier": "~1.7.0",
"ramsey/uuid": "^3.8",
"friendsofsymfony/jsrouting-bundle": "^2.5.3",
"league/oauth2-server": "^8.2.2",
"symfony/psr-http-message-bridge": "^2.0",
"nyholm/psr7": "^1.3",
"symfony/rate-limiter": "^5.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-doctrine": "^1.3.11"
},
"autoload": {
"psr-4": {
"Themes\\AbstractApiTheme\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Ambroise Maupate",
"email": "ambroise@rezo-zero.com"
}
],
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}