-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.79 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
{
"name": "danskernesdigitalebibliotek/oauth2-adgangsplatformen",
"description": "OAuth 2.0 provider for using Adgangsplatformen - a single sign-on solution for public libraries in Denmark",
"type": "library",
"require": {
"php": "^7.2",
"ext-json": "*",
"composer/package-versions-deprecated": "^1.11",
"league/oauth2-client": "^2.4.1"
},
"autoload": {
"psr-4": {
"Adgangsplatformen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Adgangsplatformen\\": "tests/"
}
},
"license": "AGPL",
"config": {
"sort-packages": true
},
"suggest": {
"psr/http-server-middleware": "To use included middleware to validate access tokens in headers",
"laravel/lumen-framework": "To use included Laravel service provider for easy integration",
"softonic/laravel-psr15-bridge": "To use included middleware with Laravel or Lumen",
"mnapoli/silly-php-di": "To use included CLI app",
"rtheunissen/guzzle-log-middleware": "To use included CLI app",
"vlucas/phpdotenv": "To use included CLI app"
},
"bin": ["bin/adgangsplatformen"],
"require-dev": {
"illuminate/http": "^5.8 || ^6.0",
"illuminate/support": "^5.8 || ^6.0",
"mnapoli/silly-php-di": "^1.2",
"php-di/php-di": "^6",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.11.12",
"phpstan/phpstan-phpunit": "^0.11.2",
"phpunit/phpunit": "^8.2",
"psr/http-server-middleware": "^1.0",
"rtheunissen/guzzle-log-middleware": "^0.4.2",
"softonic/laravel-psr15-bridge": "^1.1",
"squizlabs/php_codesniffer": "^3.4",
"vlucas/phpdotenv": "^3.4",
"guzzlehttp/psr7": "^1.3"
}
}