forked from dkorsak/doctrine-data-fixture-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 822 Bytes
/
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
{
"name": "valerialevenets/doctrine-data-fixture-module",
"description": "Laminas Module that provides Doctrine Data-Fixture functionality",
"type": "library",
"license": "MIT",
"keywords": [
"doctrine",
"data-fixture",
"module",
"laminas"
],
"authors": [
{
"name": "Valeriia Levenets",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"laminas/laminas-modulemanager": "~2.0",
"laminas/laminas-eventmanager": "~3.0",
"laminas/laminas-servicemanager": "~3.0",
"doctrine/data-fixtures": "^1.5",
"doctrine/doctrine-orm-module": "^4.0"
},
"autoload": {
"psr-0": {
"DoctrineDataFixtureModule": "src/"
}
}
}