forked from thephpleague/factory-muffin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.58 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "league/factory-muffin",
"description": "The goal of this package is to enable the rapid creation of objects for the purpose of testing.",
"keywords": ["testing", "factory"],
"homepage": "http://factory-muffin.thephpleague.com/",
"license": "MIT",
"authors": [
{
"name": "Graham Campbell",
"email": "[email protected]"
},
{
"name": "Scott Robertson",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"doctrine/orm": "^2.5",
"illuminate/database": "5.0.* || 5.1.* || 5.5.* || ^6.0",
"league/factory-muffin-faker": "^2.3",
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
},
"replace": {
"zizaco/factory-muff": "self.version"
},
"suggest": {
"doctrine/orm": "Factory Muffin supports doctrine through the repository store.",
"illuminate/database": "Factory Muffin supports eloquent through the model store.",
"league/factory-muffin-faker": "Factory Muffin is very powerful together with faker."
},
"autoload": {
"psr-4": {
"League\\FactoryMuffin\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/AbstractTestCase.php"
],
"psr-4": {
"League\\FactoryMuffin\\Test\\": "tests/entities/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "3.3-dev"
}
}
}