-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.49 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.49 KB
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
{
"name": "zenstruck/foundry",
"description": "A model factory library for creating expressive, auto-completable, on-demand dev/test fixtures with Symfony and Doctrine.",
"homepage": "https://github.com/zenstruck/foundry",
"type": "library",
"license": "MIT",
"keywords": ["fixture", "factory", "test", "symfony", "faker", "doctrine"],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=7.2.5",
"doctrine/persistence": "^1.3.3|^2.0",
"fzaninotto/faker": "^1.5",
"symfony/property-access": "^3.4|^4.4|^5.0"
},
"require-dev": {
"dama/doctrine-test-bundle": "^6.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.7",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"phpunit/phpunit": "^8.5",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/maker-bundle": "^1.5"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\Foundry\\": "src/" },
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Zenstruck\\Foundry\\Tests\\": "tests/",
"App\\": "tests/Fixtures/tmp/src",
"App\\Tests\\": "tests/Fixtures/tmp/tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}