forked from trappar/AliceGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 1007 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
32
33
34
35
36
{
"name": "trappar/alice-generator",
"description": "Automatically generates alice fixture based on a set of objects",
"keywords": ["alice", "fixture", "data", "test", "generator", "orm", "doctrine"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jeff Way",
"email": "jeff.way@me.com"
},
{
"name": "Michel Valdrighi",
"email": "hello@miche.lv"
},
{
"name": "Michael Malura",
"email": "michael@lulububu.de"
}
],
"require": {
"php": "^7.3 || ^8.0",
"symfony/yaml": "^5.0 || ^6.0",
"doctrine/common": "^3.0",
"jms/metadata": "^2.7.0"
},
"require-dev": {
"doctrine/orm": "^2.6",
"phpunit/phpunit": "^9.5",
"nelmio/alice": "^3.3",
"phpstan/phpstan": "^0.12.86"
},
"autoload": {
"psr-4": { "Trappar\\AliceGenerator\\": "src/Trappar/AliceGenerator" }
}
}