-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.15 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
{
"name": "rebelcode/time-abstract",
"description": "Abstract functionality for dealing with time.",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "RebelCode",
"email": "dev@rebelcode.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^5.4 | ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/php-cs-fixer-config": "^0.1",
"codeclimate/php-test-reporter": "<=0.3.2",
"dhii/time-interface": "dev-develop",
"dhii/stringable-interface": "^0.1",
"dhii/exception-interface": "^0.1"
},
"autoload": {
"psr-4": {
"RebelCode\\Time\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RebelCode\\Time\\UnitTest\\": "test/unit",
"RebelCode\\Time\\FuncTest\\": "test/functional"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}