-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 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
29
30
31
32
33
34
{
"name": "mediagone/symfony-easy-api",
"type": "library",
"description": "Quickly build JSON API using plain Symfony controllers.",
"keywords": ["json", "api", "symfony"],
"license": "MIT",
"authors": [
{"name": "Bruce Suire", "role": "Developer"}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Mediagone\\Symfony\\EasyApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mediagone\\Symfony\\EasyApi\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"symfony/http-foundation": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"scripts": {
"tests": "phpunit -c phpunit.xml.dist --testsuite Unit_Tests"
}
}