-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (83 loc) · 2.26 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
76
77
78
79
80
81
82
83
{
"name": "cultuurnet/jwt-provider",
"description": "Silex application that provides JSON Web Tokens",
"type": "project",
"license": "Apache-2.0",
"authors": [
{
"name": "Publiq vzw",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"aura/session": "^2.1",
"filp/whoops": "^2.5",
"guzzlehttp/psr7": "^2.6",
"league/container": "^3.3",
"league/route": "^4.3",
"monolog/monolog": "^1.11",
"symfony/yaml": "^5.4",
"beberlei/assert": "^3.2",
"cultuurnet/culturefeed-php": "^1.10",
"cultuurnet/udb3-api-guard": "^v4.0.0",
"php-http/message-factory": "^1.1",
"laminas/laminas-httphandlerrunner": "^2.2",
"sentry/sdk": "^4.0",
"auth0/auth0-php": "^8.3",
"symfony/http-client": "^5.4",
"hassankhan/config": "^3.1",
"http-interop/http-factory-guzzle": "^1.2",
"slim/psr7": "^1.6",
"ext-json": "*",
"symfony/event-dispatcher": "^5.4",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"publiq/php-cs-fixer-config": "^v2.1",
"jangregor/phpstan-prophecy": "^1.0",
"phpunit/phpunit": "^9.6",
"phpspec/prophecy-phpunit": "^2.2",
"rector/rector": "^1.0"
},
"autoload": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": [
"app/",
"src/"
]
}
},
"autoload-dev": {
"psr-4": {
"CultuurNet\\UDB3\\JwtProvider\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"config": {
"preferred-install": {
"cultuurnet/*": "source",
"*": "dist"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan analyse",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"ci": [
"composer cs",
"composer phpstan",
"composer test"
]
}
}