forked from contributte/oauth2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.23 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
51
52
53
54
55
{
"name": "contributte/oauth2-client",
"description": "Integration of league/oauth2-client into Nette framework",
"keywords": [
"nette",
"oauth2",
"client"
],
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/contributte/oauth2-client",
"authors": [
{
"name": "Marek Bartoš",
"homepage": "https://marek-bartos.cz"
}
],
"require": {
"php": "^7.2",
"league/oauth2-client": "^2.4.1",
"nette/http": "~3.0.1"
},
"require-dev": {
"league/oauth2-facebook": "^2.0",
"league/oauth2-google": "^3.0",
"mockery/mockery": "^1.2",
"ninjify/qa": "^0.9.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules": "^0.11",
"phpstan/phpstan-nette": "^0.11",
"phpstan/phpstan-shim": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpunit/phpunit": "^8.1"
},
"autoload": {
"psr-4": {
"Contributte\\OAuth2Client\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Contributte\\OAuth2Client\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "0.3.x-dev"
}
}
}