forked from frictionlessdata/datapackage-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 921 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
{
"name": "frictionlessdata/datapackage",
"description": "A utility library for working with Data Packages",
"license": "MIT",
"require": {
"php": ">=5.6",
"justinrainbow/json-schema": "^5.2",
"frictionlessdata/tableschema": "^0.1.9",
"alchemy/zippy": "=0.3.5"
},
"require-dev": {
"phpunit/phpunit": "^4.8.35",
"satooshi/php-coveralls": "^1.0",
"psy/psysh": "@stable"
},
"autoload": {
"psr-4": {
"frictionlessdata\\datapackage\\": "src/"
}
},
"scripts": {
"test": "phpunit --coverage-clover coverage-clover.xml --bootstrap tests/autoload.php tests/",
"update_registry": "php update_registry.php",
"style-check": "./.install_cs_fixer.sh && ./php-cs-fixer fix --dry-run --verbose --diff",
"style-fix": "./.install_cs_fixer.sh && ./php-cs-fixer fix --verbose"
}
}