-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 863 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
{
"name": "geerthauwaerts/s3-origin-shield",
"description": "Origin Shield for S3",
"keywords": [
"s3",
"cdn",
"origin shield"
],
"homepage": "https://github.com/geerthauwaerts/s3-origin-shield",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Geert Hauwaerts",
"email": "geert@hauwaerts.be"
}
],
"require": {
"php": ">=7.0",
"aws/aws-sdk-php": "^3.142",
"league/flysystem": "^1.0"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml --extensions=php app/",
"start": "php -S localhost:8000 -t public"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5"
}
}