-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathcomposer.json
101 lines (101 loc) · 3.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"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", "dev"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
},
{
"name": "Nicolas PHILIPPE",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"doctrine/persistence": "^2.0|^3.0",
"fakerphp/faker": "^1.23",
"symfony/deprecation-contracts": "^2.2|^3.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/property-access": "^6.4|^7.0",
"symfony/var-exporter": "^6.4.9|~7.0.9|^7.1.2",
"zenstruck/assert": "^1.4"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"brianium/paratest": "^6|^7",
"dama/doctrine-test-bundle": "^7.0|^8.0",
"doctrine/collections": "^1.7|^2.0",
"doctrine/common": "^2|^3",
"doctrine/doctrine-bundle": "^2.10",
"doctrine/doctrine-migrations-bundle": "^2.2|^3.0",
"doctrine/mongodb-odm-bundle": "^4.6|^5.0",
"doctrine/orm": "^2.16|^3.0",
"phpunit/phpunit": "^9.5.0 || ^10.0 || ^11.0",
"symfony/console": "^6.4|^7.0",
"symfony/dotenv": "^6.4|^7.0",
"symfony/maker-bundle": "^1.55",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/runtime": "^6.4|^7.0",
"symfony/translation-contracts": "^3.4",
"symfony/uid": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"Zenstruck\\Foundry\\": "src/",
"Zenstruck\\Foundry\\Psalm\\": "utils/psalm"
},
"files": [
"src/functions.php",
"src/Persistence/functions.php",
"src/symfony_console.php"
]
},
"autoload-dev": {
"psr-4": {
"Zenstruck\\Foundry\\Tests\\": ["tests/"],
"App\\": "tests/Fixture/Maker/tmp/src",
"App\\Tests\\": "tests/Fixture/Maker/tmp/tests"
},
"exclude-from-classmap": ["tests/Fixture/Maker/expected"]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"symfony/flex": true,
"symfony/runtime": false
}
},
"extra": {
"bamarni-bin": {
"target-directory": "bin/tools",
"bin-links": true,
"forward-command": false
},
"psalm": {
"pluginClass": "Zenstruck\\Foundry\\Psalm\\FoundryPlugin"
}
},
"scripts": {
"test": [
"@test-schema",
"@test-migrate"
],
"test-schema": "./phpunit",
"test-migrate": "./phpunit --testsuite migrate --bootstrap tests/bootstrap-migrate.php"
},
"scripts-descriptions": {
"test-schema": "Test with schema reset",
"test-migrate": "Test with migrations reset"
},
"minimum-stability": "dev",
"prefer-stable": true
}