-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 817 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 817 Bytes
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
{
"name": "texdc/range",
"description": "A library of range objects",
"authors": [
{ "name": "George D. Cooksey, III", "email": "texdc3@gmail.com" }
],
"license": "MIT",
"keywords": ["range", "daterange", "date range", "enablement"],
"require": {
"php": "~7.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"satooshi/php-coveralls": "@stable",
"squizlabs/php_codesniffer": "@stable"
},
"autoload": {
"psr-4": { "texdc\\range\\": "src/" }
},
"autoload-dev": {
"psr-4": { "texdc\\range\\test\\": "test/" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"style": "vendor/bin/phpcs --standard=PSR2 src/ test/",
"coverage": "vendor/bin/php-coveralls"
}
}