-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
36 lines (36 loc) · 984 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
{
"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": ">=7.3.0",
"guzzlehttp/guzzle": "~6.5.5",
"guzzlehttp/oauth-subscriber": "0.3.*"
},
"require-dev": {
"phpunit/phpunit": "~5.0",
"friendsofphp/php-cs-fixer": "~2.12",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": { "phpSmug\\": "lib/phpSmug/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}