-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.83 KB
/
composer.json
File metadata and controls
94 lines (94 loc) · 2.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "paneedesign/storage-bundle",
"description": "A Symfony bundle that provide tools to handle media storage locally or on S3.",
"type": "symfony-bundle",
"keywords": ["storage", "aws", "file", "filesystem", "media", "gaufrette", "knp", "s3", "liip", "php"],
"homepage": "https://www.ped.company/",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "Fabiano Roberto",
"email": "fabiano.roberto@ped.technology",
"role": "Senior Back-end Developer"
},
{
"name": "Luigi Cardamone",
"email": "luigi.cardamone@ped.technology",
"role": "Senior Back-end Developer"
},
{
"name": "The contributors",
"homepage": "https://github.com/paneedesign/storage-bundle/contributors"
}
],
"support": {
"email": "github@ped.technology",
"issues": "https://github.com/paneedesign/storage-bundle/issues"
},
"require": {
"php": "^7.2.3",
"ext-exif": "*",
"ext-gd": "*",
"ext-json": "*",
"aws/aws-sdk-php": "^3.70",
"fresh/doctrine-enum-bundle": "^5.3|^6.5",
"gaufrette/extras": "~0.1",
"knplabs/gaufrette": "~0.5",
"knplabs/knp-gaufrette-bundle": "~0.5",
"liip/imagine-bundle": "~2.1",
"paneedesign/discriminator-map-bundle": "^1.0",
"symfony/console": "^3.4|^4.0|^5.0",
"symfony/flex": "^1.6",
"symfony/framework-bundle": "^3.4|^4.0|^5.0",
"symfony/twig-bundle": "^3.4|^4.0|^5.0",
"symfony/yaml": "^3.4|^4.0|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpmd/phpmd": "^2.6",
"rector/rector": "^0.7",
"squizlabs/php_codesniffer": "^3.4",
"symfony/filesystem": "^3.4|^4.0|^5.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"PaneeDesign\\StorageBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"PaneeDesign\\StorageBundle\\Tests\\": "tests/"
}
},
"scripts": {
"beautify": [
"./vendor/bin/php-cs-fixer fix --verbose --config=.php_cs.dist ."
],
"beautify-dry-run": [
"./vendor/bin/php-cs-fixer fix --diff --dry-run -v --config=.php_cs.dist ."
],
"rector": [
"./vendor/bin/rector process */"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"id": "01E11EZ1NB08P8APSACQYD5JYC",
"allow-contrib": "true"
}
}
}