-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (47 loc) · 1.02 KB
/
composer.json
File metadata and controls
executable file
·48 lines (47 loc) · 1.02 KB
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
{
"name": "mjr/code-generator-bundle",
"version": "1.9.2",
"type": "symfony-bundle",
"description": "Code Generation based on twig",
"keywords": [
"symfony",
"twig",
"bundle",
"code",
"generation"
],
"homepage": "https://www.mjr.one",
"license": "LGPL-3.0",
"autoload": {
"psr-4": {
"MjrOne\\CodeGeneratorBundle\\": "/src"
}
},
"authors": [
{
"name": "Christopher Westerfield",
"email": "chris@mjr.one"
}
],
"require": {
"php": ">=7.1.0",
"symfony/symfony": "<3.4.0",
"symfony/property-info": "<3.4.0",
"phpdocumentor/reflection-docblock": "^3.0",
"symfony/property-access": "<3.4.0",
"mjr/cg-interfaces": "1.*",
"nikic/php-parser": "^3.0.2",
"phpunit/phpunit": "6.*",
"phpunit/php-code-coverage": "5.*",
"phpunit/phpunit-mock-objects":"4.*",
"phpunit/php-invoker": "1.*",
"mikey179/vfsStream": "1.*"
},
"require-dev": {
},
"extra": {
"branch-alias": {
"release": "master-dev"
}
}
}