-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 969 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
37
38
39
40
41
42
{
"name": "informaticauco/oauth2-uco",
"description": "University of Córdoba client provider to the PHP League OAuth2 client",
"type": "library",
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Sergio Gómez",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Uco\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Uco\\OAuth2\\Client\\": "tests/"
}
},
"require": {
"ext-curl": "*",
"league/oauth2-client": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^8.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}