-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 880 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
37
38
39
40
41
{
"name": "mijohansen/slim-swagger",
"description": "Simpler way to hook a swagger api into slim-framework.",
"keywords": [
"slim",
"swagger"
],
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Michael Johansen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"psx/model": "^2.0",
"slim/slim": "^3.10",
"psx/schema": "^2.4",
"composer/spdx-licenses": "^1.4",
"symfony/console": "^3.4",
"doctrine/annotations": "1.4",
"eloquent/composer-config-reader": "^2.1",
"myclabs/deep-copy": "1.7"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"vierbergenlars/php-semver": "dev-master"
},
"autoload": {
"psr-4": {
"SlimSwagger\\": "src"
}
},
"scripts": {
}
}