-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
120 lines (120 loc) · 4.5 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
116
117
118
119
120
{
"name": "teknoo/east-common",
"type": "library",
"description": "Universal package, following the #East programming philosophy, build on Teknoo/East-Foundation (and Teknoo/Recipe), providing components (user management, object persistence, template rendering, ..) for the creation of web application or website.",
"keywords": ["east","common","application"],
"homepage": "https://teknoo.software/east-collection/common",
"license": "MIT",
"authors": [
{
"name": "Richard Déloge",
"email": "[email protected]",
"role": "Software architect, Lead developer"
}
],
"support": {
"issues": "https://github.com/TeknooSoftware/east-common/issues",
"source": "https://github.com/TeknooSoftware/east-common"
},
"funding": [
{
"type": "patreon",
"url": "https://www.patreon.com/teknoo_software"
},
{
"type": "github",
"url": "https://github.com/sponsors/TeknooSoftware"
}
],
"config": {
"audit": {
"abandoned": "report"
},
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Teknoo\\East\\Common\\": "src/",
"Teknoo\\East\\CommonBundle\\": "infrastructures/symfony",
"Teknoo\\East\\Common\\Doctrine\\": "infrastructures/doctrine",
"Teknoo\\East\\Common\\Flysystem\\": "infrastructures/flysystem",
"Teknoo\\East\\Common\\Minify\\": "infrastructures/minify",
"Teknoo\\Tests\\East\\Common\\": "tests/universal",
"Teknoo\\Tests\\East\\CommonBundle\\": "tests/infrastructures/symfony",
"Teknoo\\Tests\\East\\Common\\Doctrine\\": "tests/infrastructures/doctrine",
"Teknoo\\Tests\\East\\Common\\Flysystem\\": "tests/infrastructures/flysystem",
"Teknoo\\Tests\\East\\Common\\Minify\\": "tests/infrastructures/minify"
}
},
"autoload-dev": {
"psr-4": {
"Teknoo\\Tests\\East\\Common\\Behat\\": "tests/behat"
}
},
"require": {
"php": "^8.2",
"php-di/php-di": "^7.0.6",
"teknoo/immutable": "^3.0.18",
"teknoo/states": "^6.4.1",
"teknoo/recipe": "^6",
"teknoo/east-foundation": "^8"
},
"require-dev": {
"ext-mongodb" : "*",
"ext-tidy" : "*",
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^11.4.3",
"squizlabs/php_codesniffer": "^3.10.3",
"phpstan/phpstan": "^1.12.7",
"phpstan/extension-installer": "^1.4.3",
"symfony/property-access": "^6.3||^7",
"behat/behat": "^3.15",
"teknoo/bridge-phpdi-symfony": "^6.0.4",
"doctrine/common": "^3.4.5",
"doctrine/mongodb-odm": "^2.9",
"doctrine/mongodb-odm-bundle": "^4.7||^5",
"doctrine/persistence": "^3.4||^4",
"knpuniversity/oauth2-client-bundle": "^2.18",
"laminas/laminas-diactoros": "^3.5",
"league/flysystem": "^3.29.1",
"league/oauth2-client": "^2.7",
"matthiasmullie/minify": "^1.3.73",
"scheb/2fa-backup-code": "^6.12||^7",
"scheb/2fa-bundle": "^6.12||^7",
"scheb/2fa-google-authenticator": "^6.12||^7",
"scheb/2fa-totp": "^6.12||^7",
"spomky-labs/otphp": "^11.2",
"symfony/config": "^6.3||^7",
"symfony/console": "^6.3||^7",
"symfony/dependency-injection": "^6.3||^7",
"symfony/expression-language": "^6.3||^7",
"symfony/form": "^6.3||^7",
"symfony/http-kernel": "^6.3||^7",
"symfony/mailer": "^6.3||^7",
"symfony/mime": "^6.3||^7",
"symfony/notifier": "^6.3||^7",
"symfony/password-hasher": "^6.3||^7",
"symfony/psr-http-message-bridge": "^2.3.1||^6.4||^7",
"symfony/routing": "^6.3||^7",
"symfony/security-bundle": "^6.3||^7",
"symfony/security-core": "^6.3||^7",
"symfony/security-http": "^6.3||^7",
"symfony/validator": "^6.3||^7",
"twig/twig": "^3.14",
"twig/cssinliner-extra": "^3.13",
"twig/inky-extra": "^3.13"
},
"archive": {
"exclude": ["features", "tests", "vendor", ".idea"]
},
"extra": {
"thanks": {
"name": "teknoo/east-foundation",
"url": "https://github.com/TeknooSoftware/east-foundation"
}
}
}