-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
113 lines (113 loc) · 2.84 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
{
"name": "marketing-factory/password-manager",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Christian Spoo",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-pdo": "*",
"composer/semver": "^3.4.0",
"doctrine/dbal": "^4.0.1",
"erusev/parsedown": "^1.7",
"hackzilla/password-generator": "^1.4",
"laravel-zero/phar-updater": "^v1.0.6",
"symfony/console": "*",
"symfony/dotenv": "*",
"symfony/finder": "*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "*",
"symfony/mailer": "*",
"symfony/mime": "*",
"symfony/monolog-bundle": "^3.5",
"symfony/property-access": "*",
"symfony/proxy-manager-bridge": "*",
"symfony/security-core": "*",
"symfony/serializer": "*",
"symfony/templating": "*",
"symfony/twig-bundle": "*",
"symfony/validator": "*",
"symfony/yaml": "*",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^2.12|^3.0",
"twig/inky-extra": "^3.0",
"twig/markdown-extra": "^3.0",
"twig/twig": "^2.12|^3.0"
},
"require-dev": {
"codeception/codeception": "^5.1.2",
"codeception/module-asserts": "^3.0",
"codeception/module-symfony": "^3.3",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-doctrine": "^1.3.62",
"phpstan/phpstan-symfony": "^1.3.8",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.4",
"symfony/phpunit-bridge": "*"
},
"config": {
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "8.1.27"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Mfc\\PasswordManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mfc\\PasswordManager\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php81": "*",
"symfony/polyfill-php80": "*",
"symfony/polyfill-php74": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"phpcs": "phpcs --standard=PSR2",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"cache:warmup": "symfony-cmd"
},
"phpstan": "vendor/bin/phpstan analyse --level=5 --memory-limit=512M --no-progress src",
"post-autoload-dump": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "6.4.*"
}
}
}