-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
{
"name": "julienbornstein/oauth2-deezer",
"type": "library",
"description": "Deezer Oauth 2.0 Client Provider for The PHP League OAuth2-Client",
"keywords": [
"deezer",
"oauth",
"oauth2",
"client",
"authorization",
"authentication"
],
"homepage": "https://github.com/julienbornstein/oauth2-deezer",
"license": "MIT",
"authors": [
{
"name": "Julien Bornstein",
"homepage": "https://www.parisbouge.com",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"php": ">=7.3.0",
"league/oauth2-client": "^2.3"
},
"require-dev": {
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.0",
"nyholm/psr7": "^1.8",
"php-parallel-lint/php-console-color": "^1.0",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpmd/phpmd": "^2.15",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^5.4"
},
"autoload": {
"psr-4": {
"ParisBouge\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ParisBouge\\OAuth2\\Client\\Test\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"csfix": "php-cs-fixer fix --diff --verbose --config=.php_cs"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}