This repository has been archived by the owner on Aug 29, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.69 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
56
57
58
59
{
"name": "ergebnis/factory-girl-definition",
"type": "library",
"description": "Provides an interface for, and an easy way to find and register entity definitions for breerly/factory-girl-php.",
"homepage": "https://github.com/ergebnis/factory-girl-definition",
"license": "MIT",
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"breerly/factory-girl-php": "^1.2.0",
"ergebnis/classy": "^1.0.0",
"fzaninotto/faker": "^1.9.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.7.1",
"ergebnis/license": "^1.0.0",
"ergebnis/php-cs-fixer-config": "^2.2.1",
"ergebnis/phpstan-rules": "~0.15.1",
"ergebnis/test-util": "^1.0.0",
"infection/infection": "~0.15.3",
"jangregor/phpstan-prophecy": "~0.8.0",
"phpstan/extension-installer": "^1.0.4",
"phpstan/phpstan": "~0.12.40",
"phpstan/phpstan-deprecation-rules": "~0.12.5",
"phpstan/phpstan-strict-rules": "~0.12.4",
"phpunit/phpunit": "^8.5.5",
"psalm/plugin-phpunit": "~0.11.0",
"vimeo/psalm": "^3.14.2"
},
"suggest": {
"breerly/factory-girl-php": "For creating a fixture factory the definitions can be used with."
},
"config": {
"platform": {
"php": "7.2.25"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ergebnis\\FactoryGirl\\Definition\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\FactoryGirl\\Definition\\Test\\": "test"
}
},
"support": {
"issues": "https://github.com/ergebnis/factory-girl-definition/issues",
"source": "https://github.com/ergebnis/factory-girl-definition"
}
}