generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
86 lines (86 loc) · 2.43 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
{
"name": "ergebnis/factory-bot",
"description": "Provides a fixture factory for doctrine/orm entities.",
"license": "MIT",
"type": "library",
"keywords": [
"doctrine",
"orm",
"entity",
"fixture",
"factory"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/factory-bot",
"support": {
"issues": "https://github.com/ergebnis/factory-bot/issues",
"source": "https://github.com/ergebnis/factory-bot",
"security": "https://github.com/ergebnis/factory-bot/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/collections": "^1.6.5 || ^2.0.0",
"doctrine/dbal": "^2.12.0 || ^3.0.0 || ^4.0.0",
"doctrine/instantiator": "^1.0.0 || ^2.0.0",
"doctrine/orm": "^2.14.0 || ^3.0.0",
"doctrine/persistence": "^2.1.0 || ^3.0.0",
"ergebnis/classy": "^1.6.0",
"fakerphp/faker": "^1.20.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ergebnis/composer-normalize": "^2.45.0",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^6.42.2",
"ergebnis/phpstan-rules": "^2.5.0",
"ergebnis/phpunit-slow-test-detector": "^2.18.0",
"infection/infection": "~0.27.11",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^1.12.8",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-doctrine": "^1.5.5",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-strict-rules": "^1.6.1",
"phpunit/phpunit": "^10.5.26",
"psalm/plugin-phpunit": "~0.19.0",
"ramsey/uuid": "^4.7.6",
"rector/rector": "^1.2.10",
"roave/backward-compatibility-check": "^8.6.0",
"symfony/cache": "^6.4.8",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Ergebnis\\FactoryBot\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\FactoryBot\\Test\\": "test/",
"Example\\": "example/src/",
"Example\\Test\\": "example/test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1.26"
},
"preferred-install": "dist",
"sort-packages": true
}
}