-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.12 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.12 KB
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
{
"name": "creativenative/tmi-faq",
"description": "Frequently Asked Questions (FAQ) module multi lingual for LAMINAS and DOCTRINE",
"homepage": "https://en.terra-mia.immo/faq",
"license": "GNU General Public License v3.0",
"authors": [
{
"name": "Oskar Golde",
"email": "info@oskargolde.de",
"homepage": "https://oskargolde.de",
"role": "Developer"
}
],
"repositories": [
{
"type": "vcs",
"url": "git@github.com:CreativeNative/tmi-translation.git"
},
{
"type": "vcs",
"url": "git@github.com:CreativeNative/tmi-helper.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"creativenative/tmi-translation": "dev-main",
"creativenative/tmi-helper": "dev-main",
"laminas/laminas-i18n": "^2.29.0",
"laminas/laminas-mvc-i18n": "^1.9.0",
"gedmo/doctrine-extensions": "^v3.19.0",
"ext-intl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"laminas/laminas-coding-standard": "^3.0.1",
"squizlabs/php_codesniffer": "^3.12.0",
"phpstan/phpstan": "^2.1.11",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan-doctrine": "^2.0.2",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan-strict-rules": "^2.0.4"
},
"autoload": {
"psr-4": {
"TmiFaq\\": "src/"
}
},
"scripts": {
"autoload": "composer dump-autoload",
"check": [
"@cs-check",
"@stan-min"
],
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"stan-max": "vendor/bin/phpstan analyse -c phpstan.neon --level max --memory-limit 1G --ansi -vvv",
"stan-next": "vendor/bin/phpstan analyse -c phpstan.neon --level 6 --memory-limit 1G --ansi -vvv",
"stan-min": "vendor/bin/phpstan analyse -c phpstan.neon --level 5 --memory-limit 1G --ansi -vvv"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
}
}
}