-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 760 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 760 Bytes
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
{
"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"
}
],
"require": {
"php": "^7.1",
"symfony/yaml": "^2.8||^3.0|^4.0",
"doctrine/common": "^2.6",
"jms/metadata": "^1.5"
},
"require-dev": {
"doctrine/orm": "^2.6",
"phpunit/phpunit": "^7.1",
"nelmio/alice": "^3.3"
},
"autoload": {
"psr-4": { "Trappar\\AliceGenerator\\": "src/Trappar/AliceGenerator" }
}
}