forked from zenstruck/foundry
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 2.18 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
60
61
62
63
64
65
66
{
"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": ">=8.0",
"doctrine/persistence": "^1.3.3|^2.0|^3.0",
"fakerphp/faker": "^1.5",
"symfony/deprecation-contracts": "^2.2|^3.0",
"symfony/property-access": "^4.4|^5.0|^6.0",
"symfony/string": "^5.4|^6.0",
"zenstruck/assert": "^1.0",
"zenstruck/callback": "^1.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.4",
"dama/doctrine-test-bundle": "^6.0|^7.0",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/doctrine-migrations-bundle": "^2.2|^3.0",
"doctrine/mongodb-odm-bundle": "^3.1|^4.2",
"doctrine/orm": "^2.7",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/framework-bundle": "^4.4|^5.0|^6.0",
"symfony/maker-bundle": "^1.30",
"symfony/phpunit-bridge": "^6.0",
"symfony/translation-contracts": "^2.5|^3.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"bamarni/composer-bin-plugin": true,
"symfony/flex": 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": {
"bamarni-bin": {
"target-directory": "bin/tools",
"bin-links": true,
"forward-command": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}