This repository has been archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "rebelcode/modular",
"description": "A module system.",
"type": "library",
"license": "GPL-3.0",
"authors": [
{
"name": "RebelCode",
"email": "[email protected]"
}
],
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": "^5.4 | ^7.0",
"psr/container": "^1.0",
"rebelcode/module-iterator-abstract": "^0.1-alpha1",
"dhii/module-interface": "^0.1",
"dhii/factory-interface": "^0.1-alpha2",
"dhii/factory-base": "^0.1-alpha3",
"dhii/wp-events": "^0.3-alpha1",
"dhii/event-interface": "^0.2-alpha1",
"dhii/file-finder-abstract": "^0.1-alpha1",
"dhii/data-key-value-aware-abstract": "^0.1-alpha4",
"dhii/callback-abstract": "^0.1-alpha1",
"dhii/iterator-helper-base": "^0.1-alpha2",
"dhii/exception": "^0.1-alpha4",
"dhii/normalization-helper-base": "^0.1-alpha2",
"dhii/data-container-interface": "^0.2-alpha3",
"dhii/container-helper-base": "^0.1-alpha5",
"dhii/i18n-helper-base": "^0.1",
"dhii/collections-interface": "^0.2-alpha4",
"dhii/config-interface": "^0.2-alpha2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"ptrofimov/xpmock": "^1.1",
"dhii/php-cs-fixer-config": "^0.1",
"codeclimate/php-test-reporter": "<=0.3.2",
"mikey179/vfsStream": "^1.6@dev"
},
"autoload": {
"psr-4": {
"RebelCode\\Modular\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"RebelCode\\Modular\\UnitTest\\": "test/unit",
"RebelCode\\Modular\\FuncTest\\": "test/functional"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix -vvv"
},
"extra": {
"branch-alias": {
"dev-develop": "0.1.x-dev"
}
}
}