-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
75 lines (75 loc) · 2.29 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
71
72
73
74
75
{
"name": "danskernesdigitalebibliotek/follow-search",
"description": "Service allowing users to follow searches. Based on Lumen. Specificed using OpenAPI.",
"license": "AGPL",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/reload/oauth2-adgangsplatformen"
},
{
"type": "vcs",
"url": "https://github.com/reload/openplatform-client"
},
{
"type": "vcs",
"url": "https://github.com/reload/ddb-stats-laravel"
}
],
"require": {
"composer/package-versions-deprecated": "^1.11",
"danskernesdigitalebibliotek/ddb-stats-laravel": "^1.1",
"danskernesdigitalebibliotek/oauth2-adgangsplatformen": "^1.0",
"danskernesdigitalebibliotek/openplatform-client": "^1.1",
"fruitcake/laravel-cors": "^2.0",
"laravel/lumen-framework": "^8.0",
"softonic/laravel-psr15-bridge": "^2.0"
},
"require-dev": {
"behat/behat": "^3.5",
"ddelnano/dredd-hooks-php": "^1.1",
"fzaninotto/faker": "^1.4",
"guzzlehttp/guzzle": "^6.3",
"jangregor/phpstan-prophecy": "^1.0",
"matthiasnoback/behat-local-code-coverage-extension": "^0.5.0",
"mockery/mockery": "^1.0",
"nunomaduro/larastan": "^1.0.3",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpcov": "^7.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}