-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.06 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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": "gointegro/json",
"description": "GOintegro JSON Lib",
"keywords": ["JSON", "parser", "schema", "encode", "decode"],
"homepage": "http://www.gointegro.com",
"license": "MIT",
"authors": [
{
"name": "Javier Lorenzana",
"email": "javier.lorenzana@gointegro.com"
},
{
"name": "Adolfo Castro Menna",
"email": "adolfo.casto@gointegro.com"
},
{
"name": "GOintegro Devs",
"homepage": "http://www.gointegro.com"
}
],
"require": {
"php": ">=5.4.0",
"justinrainbow/json-schema": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpdocumentor/phpdocumentor": "*",
"codeception/codeception": "*",
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-0": { "GoIntegro\\Json": "" }
},
"target-dir": "GoIntegro/Json",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.9.x-dev"
}
}
}