This repository has been archived by the owner on May 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
66 lines (66 loc) · 1.82 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "league/json-reference",
"type": "library",
"description": "A library for working with JSON References",
"keywords": [
"json-reference",
"json",
"reference"
],
"license": "MIT",
"authors": [
{
"name": "Matthew Allan",
"email": "matthew.james.allan@gmail.com",
"homepage": "https://mattallan.org",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.0",
"sabre/uri": "^1.2.1",
"psr/simple-cache": "^1.0"
},
"suggest": {
"peterpostmann/fileuri": "Returns a file uri from a path",
"symfony/yaml": "Load schemes from yaml files"
},
"require-dev": {
"phpunit/phpunit" : "^5.7",
"scrutinizer/ocular": "~1.1",
"squizlabs/php_codesniffer": "~2.3",
"ext-curl": "*",
"cache/simple-cache-bridge": "^0.1.0",
"cache/array-adapter": "^0.4.2",
"phpbench/phpbench": "^0.13.0",
"cache/predis-adapter": "^0.4.0",
"peterpostmann/fileuri": "^1.0",
"symfony/yaml": "^3.3"
},
"autoload": {
"psr-4": {
"League\\JsonReference\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"League\\JsonReference\\Test\\": "tests",
"League\\JsonReference\\Bench\\": "tests/benchmarks"
}
},
"scripts": {
"test-server": "php -S localhost:1234 -t ./tests/fixtures/remotes",
"test": "phpunit",
"test-coverage": "phpdbg -qrr vendor/bin/phpunit",
"cs": "phpcs --standard=psr2 src/",
"bench": "phpbench run ./tests/benchmarks --report=default"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}