-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
61 lines (61 loc) · 1.99 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
{
"name": "ecphp/api-gw-authentication-bundle",
"description": "An API Gateway authenticator",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"authentication",
"jwt",
"API Gateway"
],
"require": {
"php": ">= 7.4",
"ext-json": "*",
"codercat/jwk-to-pem": "^1",
"lexik/jwt-authentication-bundle": "^2.11",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1",
"psr/http-factory-implementation": "^1",
"psr/http-message": "^1.0",
"psr/http-message-implementation": "^1",
"symfony/framework-bundle": "^5.2"
},
"require-dev": {
"ecphp/php-conventions": "^1",
"friends-of-phpspec/phpspec-code-coverage": "^6.0",
"infection/infection": "^0.24.0",
"infection/phpspec-adapter": "^0.1.2",
"nyholm/psr7": "^1.4",
"phpspec/phpspec": "^7.0",
"symfony/http-client": "^5.2"
},
"suggest": {
"nyholm/psr7": "A super lightweight PSR-7 implementation.",
"symfony/http-client": "The Symfony HTTP client."
},
"autoload": {
"psr-4": {
"EcPhp\\ApiGwAuthenticationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"spec\\EcPhp\\ApiGwAuthenticationBundle\\": "./spec/EcPhp/ApiGwAuthenticationBundle/",
"tests\\EcPhp\\ApiGwAuthenticationBundle\\": "./tests/src"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"changelog-unreleased": "docker-compose run auto_changelog -c .auto-changelog -u",
"changelog-version": "docker-compose run auto_changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run"
}
}