forked from derptest/phpmachinist
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 914 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
36
37
38
{
"name": "derptest/phpmachinist",
"description": "Testing object factory for PHP",
"license": "MIT",
"type": "library",
"keywords": ["machinist", "php", "test", "object", "factory", "blueprint"],
"authors": [
{
"name": "Stephan Soileau",
"role": "Developer"
},
{
"name": "Adam Englander",
"homepage": "http://adamknowsstuff.com",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"DerpTest\\Machinist": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"require": {
"php": ">5.3.0"
},
"require-dev": {
"ext-pdo_mysql": "*",
"ext-pdo_sqlite": "*",
"phake/phake": "v2.0.0-alpha1@alpha",
"doctrine/orm": "~2.0",
"phpunit/phpunit": "*"
}
}