-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.02 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
{
"name": "aist/aist-alice-fixtures",
"description": "Alice Fixtures for ZF2.",
"license": "BSD-3-Clause",
"keywords": [
"alice",
"fixtures",
"faker",
"zf2",
"developer tools"
],
"authors": [
{
"name": "MaSi",
"email": "[email protected]",
"homepage": "http://mateuszsitek.com",
"role": "Author"
}
],
"require": {
"php": ">=5.5",
"doctrine/doctrine-orm-module": "dev-master",
"zendframework/zend-modulemanager": "~2.5",
"fzaninotto/faker": "1.5.*@dev",
"nelmio/alice": "2.0.*@dev",
"bacon/bacon-string-utils": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-0": {
"AistAliceFixtures": "src/"
},
"classmap": [
"./Module.php"
]
},
"autoload-dev": {
"psr-4": {
"AistAliceFixturesTest\\": "test/"
}
}
}