This repository was archived by the owner on Sep 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.64 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.64 KB
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
{
"name": "axelitus/base",
"description": "A framework agnostic PHP package that contains _extensions_ and helpers for the PHP primitive types (strings, numbers, array, etc.). It also contains common interfaces for _new_ types like collections, etc.",
"type": "library",
"keywords": ["basic", "primitive", "string", "number", "array", "collection"],
"homepage": "http://axelitus.github.io/php-base",
"license": "MIT",
"authors": [
{
"name": "Axel Pardemann",
"email": "axelitusdev@gmail.com",
"homepage": "http://axelitus.mx",
"role": "Lead Developer"
}
],
"support": {
"email": "axelitusdev@gmail.com",
"source": "https://github.com/axelitus/php-base",
"issues": "https://github.com/axelitus/php-base/issues",
"wiki": "https://github.com/axelitus/php-base/wiki"
},
"require": {
"php": ">=5.4.9"
},
"require-dev": {
"phing/phing": "2.10.*",
"phpunit/phpunit": "4.5.*",
"squizlabs/php_codesniffer": "2.2.*",
"phpmd/phpmd" : "2.2.*",
"league/phpunit-coverage-listener": "1.1.*",
"phpdocumentor/phpdocumentor": "2.8.*"
},
"replace": {
"axelitus/acre-common": "*"
},
"autoload": {
"psr-4": {
"axelitus\\Base\\": "src/",
"axelitus\\Base\\Tests\\": "res/tests/"
}
},
"config": {
"vendor-dir": "vendor"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-develop": "0.9-dev",
"dev-master": "0.8-dev"
}
}
}