-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
70 lines (70 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
65
66
67
68
69
70
{
"name": "zfr/zfr-oauth2-server",
"description": "PHP library to create an OAuth 2 server",
"type": "library",
"license": "MIT",
"keywords": [
"oauth",
"oauth 2",
"server"
],
"homepage": "http://www.github.com/zf-fr/zfr-oauth2-server",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
},
{
"name": "Bas Kamer",
"email": "[email protected]",
"homepage": "https://baskamer.nl"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"laminas/laminas-diactoros": "^2.6",
"nesbot/carbon": "^2.62",
"psr/container": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0",
"ramsey/uuid": "^3.1 || ^4.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"laminas/laminas-coding-standard": "^2.4",
"php-mock/php-mock-phpunit": "^2.6",
"phpunit/phpunit": "^9.5.5"
},
"autoload": {
"psr-4": {
"ZfrOAuth2\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrOAuth2Test\\Server\\": "test/src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.10.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"
}
}