-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "enzyme/axiom",
"type": "library",
"description": "A set of interfaces & classes for creating domain driven projects.",
"keywords": ["enzyme","axiom","interfaces","ddd","hex","php"],
"homepage": "https://github.com/enzyme/axiom",
"license": "MIT",
"bin": ["bin/axiom"],
"authors": [
{
"name": "Tristan Strathearn",
"email": "[email protected]",
"homepage": "https://github.com/r3oath",
"role": "Senior Web Developer"
}
],
"require": {
"php": ">=5.5.0",
"symfony/console": "^3.0",
"enzyme/parrot": "^0.0.1",
"icanboogie/inflector": "^1.4",
"enzyme/freckle": "^0.3.0"
},
"autoload": {
"psr-4": {
"Enzyme\\Axiom\\": "src/",
"Enzyme\\Axiom\\Console\\": "console/"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"mockery/mockery": "^0.9.4",
"satooshi/php-coveralls": "^0.6.1"
}
}