-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.14 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
{
"name": "axelitus/design-patterns",
"description": "Design Patterns for PHP",
"type": "library",
"keywords": ["patterns", "design", "architecture", "singleton", "multiton", "factory"],
"homepage": "http://axelitus.mx/projects/axelitus/design-patterns",
"license": "MIT",
"authors": [
{
"name": "Axel Pardemann",
"email": "[email protected]",
"homepage": "http://axelitus.mx",
"role": "Lead Developer"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/axelitus/php-design-patterns",
"issues": "https://github.com/axelitus/php-design-patterns/issues",
"wiki": "https://github.com/axelitus/php-design-patterns/wiki"
},
"require": {
"php": ">=5.4.9"
},
"require-dev": {
"phpunit/phpunit": "3.8.*",
"squizlabs/php_codesniffer": "1.4.*",
"phpmd/phpmd" : "1.5.*"
},
"autoload": {
"psr-0": {
"axelitus\\Patterns": "src/"
}
},
"config": {
"vendor-dir": "vendor"
},
"minimum-stability": "dev"
}