-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 857 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
{
"name": "palethorn/rest-on-php",
"license": "MIT",
"description": "Rest framework built on symfony components",
"type": "library",
"keywords": ["rest", "php", "framework", "symfony", "components", "on", "palethorn"],
"autoload":{
"psr-4": {
"RestOnPhp\\": "src"
}
},
"require": {
"symfony/dependency-injection": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/routing": "^7.0",
"symfony/http-kernel": "^7.0",
"monolog/monolog": "^3.5",
"doctrine/orm": "^3.0",
"doctrine/migrations": "^3.7",
"symfony/yaml": "^7.0",
"symfony/config": "^7.0",
"symfony/validator": "^7.0",
"symfony/finder": "^7.0",
"lcobucci/jwt": "^4.0",
"symfony/cache": "^7.0",
"symfony/console": "^7.0"
}
}