-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 964 Bytes
/
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
{
"name": "david-crty/upload-to-s3-webhook",
"description": "Allow you to upload folders files to s3 and trigger a webkook containing all upload infos",
"type": "cli",
"license": "MIT",
"authors": [
{
"name": "David Courtey",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": "^7.3",
"symfony/console": "^5.1",
"ext-fileinfo": "*",
"ext-xml": "*",
"doctrine/collections": "^1.6",
"aws/aws-sdk-php": "^3.155",
"cocur/slugify": "^4.0",
"symfony/dotenv": "^5.1",
"symfony/http-client": "^5.1",
"symfony/serializer": "^5.1",
"doctrine/annotations": "^1.10",
"symfony/property-access": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^9",
"symfony/var-dumper": "^5.1",
"bamarni/composer-bin-plugin": "^1.4"
},
"scripts": {
"test": "phpunit",
"compile": "vendor/bin/box compile"
}
}