-
Notifications
You must be signed in to change notification settings - Fork 453
/
composer.json
69 lines (68 loc) · 1.85 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
65
66
67
68
69
{
"name": "lusitanian/oauth",
"description": "PHP 7.2 oAuth 1/2 Library",
"keywords": ["oauth", "authentication", "authorization", "security"],
"license": "MIT",
"authors": [
{
"name": "David Desberg",
"email": "[email protected]"
},
{
"name": "Pieter Hordijk",
"email": "[email protected]"
},
{
"name": "Elliot Chance",
"email": "[email protected]"
}
],
"scripts" : {
"tests" : [
"./vendor/bin/phpunit --color=always"
],
"check" : [
"./vendor/bin/php-cs-fixer fix --ansi --dry-run --diff",
"./vendor/bin/phpunit --color=always"
],
"fix": [
"./vendor/bin/php-cs-fixer fix --ansi"
]
},
"require": {
"php": "^7.2 || 8.0.*"
},
"require-dev": {
"ext-dom": "*",
"ext-curl": "*",
"ext-json": "*",
"symfony/http-foundation": "~2.1",
"predis/predis": "0.8.*@dev",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^5.1",
"symfony/finder": "^5.1",
"phpunit/phpunit": "^8.5",
"friendsofphp/php-cs-fixer": "^3.0"
},
"suggest": {
"symfony/http-foundation": "Allows using the Symfony Session storage backend.",
"predis/predis": "Allows using the Redis storage backend.",
"ext-openssl": "Allows for usage of secure connections with the stream-based HTTP client."
},
"autoload": {
"psr-4": {
"OAuth\\": "src/OAuth"
}
},
"autoload-dev": {
"psr-4": {
"OAuthTest\\Unit\\": "tests/Unit",
"OAuthTest\\Mocks\\": "tests/Mocks"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}