-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
48 lines (48 loc) · 1.18 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
46
47
48
{
"name": "kirouane/interval",
"description": "Library to handel intervals",
"type": "library",
"keywords": [
"php", "interval", "period", "time", "algebra", "infinity", "planning", "booking", "exclusion"
],
"homepage": "https://github.com/Kirouane/interval",
"license": "MIT",
"authors": [
{
"name": "nassim.kirouane",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/Kirouane/interval/issues"
},
"autoload": {
"psr-4": {"Interval\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Interval\\": "tests/unit"}
},
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php" : ">= 7.1"
},
"require-dev": {
"phpro/grumphp": "^0.15.2",
"infection/infection": "^0.11.5",
"phpunit/phpunit": "^7.5",
"mockery/mockery": "^1.2",
"php-coveralls/php-coveralls": "^2.1",
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.11.8",
"jakub-onderka/php-parallel-lint": "^1.0",
"maglnet/composer-require-checker": "^2.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^4.1",
"sensiolabs/security-checker": "^5.0"
}
}