-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
115 lines (115 loc) · 4.48 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "connectholland/user-bundle",
"type": "symfony-bundle",
"description": "User bundle for Symfony 4 projects",
"license": "MIT",
"authors": [
{
"name": "Reyo Stallenberg",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3",
"ext-json": "*",
"doctrine/collections": "^1.6",
"doctrine/doctrine-bundle": "^1.11 || ^2.0",
"doctrine/orm": "^2.6",
"doctrine/persistence": "^1.1 || ^2.0",
"gisostallenberg/response-content-negotiation-bundle": "^0.9",
"haydenpierce/class-finder": "^0.4.0",
"league/html-to-markdown": "^4.8",
"php-http/guzzle6-adapter": "^1.0 || ^2.0",
"php-http/httplug-bundle": "^1.16",
"rollerworks/password-strength-validator": "^1.2",
"sensio/framework-extra-bundle": "^5.5",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/config": "^4.4 || ^5.0",
"symfony/console": "^4.4 || ^5.0",
"symfony/css-selector": "^5.2",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/doctrine-bridge": "^4.4 || ^5.0",
"symfony/dom-crawler": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/event-dispatcher-contracts": "^1.1 || ^2.0",
"symfony/form": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/http-foundation": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/mailer": "^4.4 || ^5.0",
"symfony/options-resolver": "^4.4 || ^5.0",
"symfony/routing": "^4.4 || ^5.0",
"symfony/security-bundle": "^4.4 || ^5.0",
"symfony/security-core": "^4.4 || ^5.0",
"symfony/security-csrf": "^4.4 || ^5.0",
"symfony/security-guard": "^4.4 || ^5.0",
"symfony/security-http": "^4.4 || ^5.0",
"symfony/templating": "^4.4 || ^5.0",
"symfony/translation": "^4.4 || ^5.0",
"symfony/twig-bundle": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0",
"twig/twig": "^2.0 || ^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0.1",
"friendsofphp/php-cs-fixer": "^2.15",
"hwi/oauth-bundle": "^0.6.3 || ^1.0",
"icanhazstring/composer-unused": "^0.7.5",
"maglnet/composer-require-checker": "^2.0",
"nikic/php-parser": "^4.9",
"php-http/guzzle6-adapter": "^1.0 || ^2.0",
"php-http/httplug-bundle": "^1.16",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.3",
"rector/rector": "^0.8.6",
"sensiolabs/security-checker": "^6.0",
"symfony/var-dumper": "^4.4 || ^5.0"
},
"suggest": {
"api-platform/api-pack": "Add api-platform/api-pack to add API support to the user bundle, run 'composer req api-pack' to install and follow api platform installation instructions.",
"hwi/oauth-bundle": "Add hwi/oauth-bundle to be able using OAuth logins, run 'composer require hwi/oauth-bundle' to install.",
"lexik/jwt-authentication-bundle": "Add lexik/jwt-authentication-bundle to add JWT token support, run 'composer require lexik/jwt-authentication-bundle' to install.",
"nelmio/api-doc-bundle": "Add nelmio/api-doc-bundle to add comprehensive API documentation, run 'composer require nelmio/api-doc-bundle' to install the Nelmio API Doc bundle and follow the bundle installation and configuration instructions."
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"ConnectHolland\\UserBundle\\": "src"
},
"files": [
"doctrine-persistence-bc-layer.php"
]
},
"autoload-dev": {
"psr-4": {
"ConnectHolland\\UserBundle\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": [
"composer unused --excludePackage=php-http/guzzle6-adapter --no-ansi",
"security-checker security:check",
"composer-require-checker --config-file=.composer-require-checker.json",
"phpstan analyse --level=7 src/ tests/"
],
"fix": [
"php-cs-fixer fix --allow-risky=yes",
"composer normalize --no-update-lock"
],
"test": [
"phpunit"
]
}
}