-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.13 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
{
"name": "popphp/pop-storage",
"description": "Pop Storage Component for Pop PHP Framework",
"keywords": [
"storage",
"file storage",
"aws s3",
"azure blob",
"php",
"pop",
"pop php"
],
"homepage": "http://www.popphp.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Nick Sagona",
"email": "dev@nolainteractive.com",
"homepage": "http://www.nolainteractive.com/"
}
],
"require": {
"php": ">=8.1.0",
"popphp/pop-dir": "^4.0.0",
"popphp/pop-http": "^5.1.1",
"popphp/pop-utils": "^2.1.0",
"aws/aws-sdk-php": "^3.283.11"
},
"require-dev": {
"phpunit/phpunit": "^10.0.0"
},
"autoload": {
"psr-4": {
"Pop\\Storage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pop\\Storage\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --exclude-group skip"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}