Skip to content

Commit 3c25ab7

Browse files
committed
Configure Composer
1 parent 16041db commit 3c25ab7

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

composer.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "z-ee/date-range",
3+
"description": "Date range implementation",
4+
"license": "BSD-2-Clause",
5+
"keywords": [
6+
"date range"
7+
],
8+
"authors": [
9+
{
10+
"name": "Veaceslav Medvedev",
11+
"email": "[email protected]"
12+
}
13+
],
14+
"require": {
15+
"php": "^7.1"
16+
},
17+
"require-dev": {
18+
"phpunit/phpunit": "~6.4.4"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"Zee\\DateRange\\": ["src/"]
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"Zee\\DateRange\\": ["tests/"]
28+
}
29+
},
30+
"scripts": {
31+
"check": [
32+
"@test"
33+
],
34+
"test": "phpunit",
35+
"test-coverage": "phpunit --coverage-clover build/logs/clover.xml",
36+
"show-coverage": "phpunit --coverage-clover build/logs/clover.xml --coverage-text=php://stdout"
37+
},
38+
"extra": {
39+
"branch-alias": {
40+
"dev-master": "1.0.x-dev"
41+
}
42+
}
43+
}

0 commit comments

Comments
 (0)