forked from studionone/shale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.57 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
{
"name": "studionone/shale",
"description": "A PHP schema system for (de)serializing JSON and other transports",
"version": "0.2.3",
"keywords": ["serialization", "json"],
"homepage": "https://github.com/studionone/shale",
"license": "MIT",
"authors":
[
{
"name": "Studio None",
"email": "[email protected]",
"homepage": "http://studionone.com.au",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/studionone/shale.git"
}
],
"require": {
"php": ">=7.0.0",
"doctrine/annotations": "^1.2",
"nikita2206/result": "dev-master#7b08cb5a2ecd79843d34aec3902b0ea973a92473",
"cebe/markdown": "1.2.1"
},
"require-dev": {
"phpunit/phpunit": "~5.1.0",
"silex/silex": "~1.2"
},
"autoload": {
"psr-4": {
"Shale\\": "src",
"Shale\\Test\\Support\\": "tests/support"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --configuration=tests/phpunit.xml --coverage-html=tests/coverage tests/",
"test:unit": "./vendor/bin/phpunit --configuration=tests/phpunit.xml --coverage-html=tests/coverage --testsuite unit tests/",
"test:integration": "./vendor/bin/phpunit --configuration=tests/phpunit.xml --coverage-html=tests/coverage --testsuite integration tests/",
"test:no-coverage": "./vendor/bin/phpunit --configuration=tests/phpunit.xml tests/"
}
}