-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.15 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
{
"name": "blast-project/outer-extension-bundle",
"type": "symfony-bundle",
"description": "Provides Outer Extension for Doctrine entities in Symfony bundles",
"require": {
"php": ">=7.1",
"symfony/symfony": ">=3.2"
},
"require-dev": {
"symfony/phpunit-bridge": ">=3.2",
"phpunit/phpunit": "^6.4"
},
"license": "LGPL-3.0",
"keywords": [
"symfony",
"doctrine",
"outer extension"
],
"homepage": "https://github.com/blast-project/OuterExtensionBundle",
"authors": [
{
"name": "Baptiste SIMON",
"email": "[email protected]"
},
{
"name": "Romain SANCHEZ",
"email": "[email protected]"
},
{
"name": "Marcos Bezerra de Menezes",
"email": "[email protected]"
},
{
"name": "Libre Informatique",
"homepage": "http://www.libre-informatique.fr/"
}
],
"autoload": {
"psr-4": {
"Blast\\OuterExtensionBundle\\": "src/"
}
}
}