forked from sonata-project/exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "sonata-project/exporter",
"type": "library",
"description": "Lightweight Exporter library",
"keywords": [
"export",
"csv",
"xls",
"data",
"client"
],
"homepage": "https://github.com/sonata-project/Exporter",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "https://sonata-project.org/"
}
],
"require": {
"php": "^7.2"
},
"require-dev": {
"doctrine/dbal": "^2.5",
"doctrine/orm": "^2.4.5",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"propel/propel1": "^1.6",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/phpunit-bridge": "^4.1",
"symfony/property-access": "^3.4 || ^4.0",
"symfony/routing": "^3.4 || ^4.0"
},
"suggest": {
"propel/propel1": "To export propel collections",
"symfony/property-access": "To be able to export from database entities",
"symfony/routing": "To be able to export the routes of a Symfony app"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\Exporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\Exporter\\Tests\\": "tests/"
}
}
}