-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 947 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 947 Bytes
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
{
"name": "derptest/phpmachinist",
"description": "Testing object factory for PHP",
"license": "MIT",
"type": "library",
"keywords": [
"machinist", "php", "test", "object", "factory", "blueprint", "doctrine", "phpunit", "pdo", "mysql", "sqlite",
"hhvm", "hip hop", "fixtures"
],
"authors": [
{
"name": "Stephan Soileau",
"role": "Developer"
},
{
"name": "Adam Englander",
"role": "Developer"
}
],
"autoload": {
"psr-0": {
"DerpTest\\Machinist": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
}
},
"require": {
"php": ">5.3.0"
},
"require-dev": {
"ext-pdo_mysql": "*",
"ext-pdo_sqlite": "*",
"phake/phake": "~2.0",
"doctrine/orm": "~2.0",
"phpunit/phpunit": "~4.5"
}
}