-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 838 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 838 Bytes
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
{
"name": "aztech/oauth-layer",
"description": "OAuth layer for aztech/layers",
"license": "MIT",
"keywords": [
"aztech",
"aztech-digital"
],
"type": "library",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Aztech\\Layers\\Oauth\\": "src/"
}
},
"require": {
"aztech/layers": "~0.1.0",
"aztech/php-utils": "~1.0",
"league/oauth1-client": "~1.2",
"league/oauth2-client": "~0.8",
"php": ">= 5.4",
"psr/log": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~4.2",
"squizlabs/php_codesniffer": "~2",
"vektah/bugfree-dangerzone": "~0.3",
"phpmd/phpmd": "~2"
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}