-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
68 lines (68 loc) · 1.54 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
{
"name": "zfr/zfr-oauth2-server-doctrine",
"description": "Doctrine 2 adapter for ZfrOAuth2Server",
"type": "library",
"license": "MIT",
"keywords": [
"doctrine",
"oauth 2"
],
"homepage": "http://www.github.com/zf-fr/zfr-oauth2-server-doctrine",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Bas Kamer",
"email": "[email protected]",
"homepage": "https://baskamer.nl"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"zfr/zfr-oauth2-server": "^0.10",
"doctrine/orm": "^2.8",
"psr/container": "^1.0 || ^2.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"laminas/laminas-coding-standard": "^2.4",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"ZfrOAuth2\\Server\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrOAuth2Test\\Server\\Doctrine\\": "test/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}