forked from frictionlessdata/tableschema-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 983 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
28
29
30
{
"name": "frictionlessdata/tableschema",
"description": "A utility library for working with Table Schema",
"license": "MIT",
"require": {
"php": ">=7.1.0",
"ext-mbstring": "*",
"ext-json": "*",
"justinrainbow/json-schema": "^5.2.10",
"nesbot/carbon": "^2.63.0",
"jmikola/geojson": "^1.0"
},
"require-dev": {
"phpunit/phpunit": ">=7.5 <10.0",
"php-coveralls/php-coveralls": "^2.4",
"psy/psysh": "@stable",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"frictionlessdata\\tableschema\\": "src/"
}
},
"scripts": {
"test": "phpunit --coverage-clover coverage-clover.xml",
"update-schema": "php update-schema.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"
}
}