forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.06 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
{
"name": "zircote/swagger-php",
"type": "library",
"license": "Apache2",
"bin": ["bin/swagger"],
"description": "Swagger-PHP library implementing the swagger.wordnik.com specification to describe web services, operations/actions and models enabling a uniform means of producing, consuming, and visualizing RESTful web services.",
"keywords": ["json", "api", "service discovery"],
"homepage": "https://github.com/zircote/swagger-php/",
"authors": [
{
"name": "Robert Allen",
"email": "[email protected]",
"homepage": "http://www.zircote.com"
},
{
"name": "Bob Fanger",
"email": "[email protected]",
"homepage": "http://bfanger.nl"
}
],
"config": {
"bin-dir": "bin"
},
"require": {
"php": ">=5.3.3",
"doctrine/common": "*"
},
"require-dev": {
"symfony/finder": "*",
"symfony/process": "*"
},
"autoload": {
"psr-0": {
"Swagger": "library"
}
}
}