forked from tpyo/amazon-s3-php-class
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 1.08 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
{
"name": "elecena/amazon-s3-php-class",
"description": "A standalone Amazon S3 (REST) client for PHP 7.3+ using CURL that does not require PEAR.",
"type": "library",
"homepage": "https://github.com/elecena/amazon-s3-php-class",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Donovan Schönknecht",
"email": "[email protected]"
},
{
"name": "Maciej Brencz",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-simplexml": "*"
},
"autoload": {
"classmap": ["S3.php", "tests/S3BaseTest.php"]
},
"require-dev": {
"phpunit/phpunit": "9.x",
"guzzlehttp/guzzle": "^7.3"
},
"scripts": {
"coverage": "phpunit --coverage-clover=.coverage.xml --coverage-html=.coverage --coverage-text --verbose --testdox",
"test": "phpunit -vvv --testdox"
},
"archive": {
"exclude": ["examples/", "tests/", ".coverage", ".github", "phpunit.xml", "README.md", ".gitignore"]
}
}