-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.38 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
{
"name": "orbitale/array-fixture",
"description": "A Doctrine Data Fixture service based on PHP arrays.",
"keywords": ["doctrine", "orm", "fixtures"],
"type": "library",
"license": "LGPL-2.1-or-later",
"homepage": "https://github.com/Orbitale/ArrayFixture",
"authors": [
{
"name": "Alex Rock",
"email": "[email protected]",
"homepage": "http://www.orbitale.io/"
}
],
"require": {
"php": "^7.3|^8.0",
"doctrine/data-fixtures": "^1.4",
"doctrine/instantiator": "^1.3|^2.0",
"doctrine/persistence": "^1.3|^2.0|^3.0"
},
"require-dev": {
"doctrine/orm": "^2.7|^3.0",
"doctrine/mongodb-odm": "^2.2",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-doctrine": "^1.4",
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-symfony": "^1.4"
},
"suggest": {
"doctrine/doctrine-fixtures-bundle": "To use with ORMFixtureInterface and register fixtures automatically in the Dependency Injection container."
},
"autoload": {
"psr-4": {
"Orbitale\\Component\\ArrayFixture\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Orbitale\\Component\\ArrayFixture\\" : "tests/"
}
}
}