-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcomposer.json
34 lines (34 loc) · 889 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
{
"name": "lildude/phpsmug",
"type": "library",
"description": "A simple object orientated wrapper for the SmugMug API v2",
"homepage": "https://lildude.github.io/phpSmug/",
"keywords": ["smugmug", "api"],
"license": "MIT",
"authors": [
{
"name": "Colin Seymour",
"homepage": "http://lildude.co.uk"
},
{
"name": "phpSmug Contributors",
"homepage": "https://github.com/lildude/phpSmug/graphs/contributors"
}
],
"require": {
"php": ">=8.1.0",
"guzzlehttp/guzzle": ">7.5",
"guzzlehttp/oauth-subscriber": "0.8.*"
},
"require-dev": {
"phpunit/phpunit": ">9.0"
},
"autoload": {
"psr-4": { "phpSmug\\": "lib/phpSmug/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}