-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 764 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 764 Bytes
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
{
"name": "cstea/api-bundle",
"description": "Symfony bundle providing an opinionated toolkit for building RESTful APIs",
"type": "symfony-bundle",
"require": {
"php": "^8.0",
"ext-json": "*",
"doctrine/annotations": "^2.0",
"lcobucci/jwt": "^5.3",
"symfony/property-info": "^7.1",
"symfony/security-bundle": "^7.1",
"symfony/serializer-pack": "^1.0",
"symfony/validator": "^7.1",
"symfony/event-dispatcher": "^7.1"
},
"autoload": {
"psr-4": { "Cstea\\ApiBundle\\": "" }
},
"license": "MIT",
"authors": [
{
"name": "Christopher Stea",
"email": "cstea@icloud.com"
}
],
"minimum-stability": "stable"
}