-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 1.06 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
{
"name": "bahuma/oauth2-nextcloud",
"description": "Nextcloud OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
"require": {
"league/oauth2-client": "^2.0",
"php": "^7.4||^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"mockery/mockery": "^1.4"
},
"autoload-dev": {
"psr-4": {
"Bahuma\\OAuth2\\Client\\Test\\": "test/src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Max Bachhuber",
"email": "[email protected]",
"homepage": "https://bahuma.io"
},
{
"name": "Aleix Quintana Alsius",
"email": "[email protected]",
"homepage": "https://communia.org"
}
],
"autoload": {
"psr-4": {
"Bahuma\\OAuth2\\Client\\": "src/"
}
},
"scripts": {
"check": "phpcs src tests --standard=PSR12 -sp",
"cs-fix": "phpcbf src tests --standard=PSR12 -p"
}
}