-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.14 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
{
"name": "webforge/doctrine-compiler",
"description": "Generate your doctrine entities metadata from a simple json file, including the php code for the entity",
"license": "MIT",
"authors": [
{
"name": "Philipp Scheit",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Webforge\\Doctrine\\Compiler": [
"lib/",
"tests/"
],
"Webforge\\Code": "lib/"
}
},
"require": {
"php": ">=7.3",
"webforge/doctrine": "1.2.*",
"doctrine/dbal": "2.7.x",
"webforge/webforge": "^1.11@dev",
"webforge/serializer": "1.0.*",
"beberlei/assert": "1.6.*@stable"
},
"require-dev": {
"mockery/mockery": "~0.9",
"webforge/testplate": "~1.6.0",
"mikey179/vfsstream": "1.3.*@dev",
"slevomat/coding-standard": "^6.0@stable",
"squizlabs/php_codesniffer": "^3.5@stable"
},
"bin": [
"bin/webforge-doctrine-compiler"
],
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"directory-locations": {
"lib": "lib/",
"tpl": "resources/tpl/",
"resources": "resources"
}
}
}