-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.38 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
{
"name": "creativenative/tmi-translation",
"description": "Database backed up translation module for german, english and italian in LAMINAS and DOCTRINE",
"homepage": "https://en.terra-mia.immo/faq",
"license": "GNU General Public License v3.0",
"authors": [
{
"name": "Oskar Golde",
"email": "[email protected]",
"homepage": "https://oskargolde.de",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"laminas/laminas-i18n": "^2.22.1",
"laminas/laminas-mvc-i18n": "^1.7.0",
"gedmo/doctrine-extensions": "^v3.14.0",
"voku/html-min": "^4.5.0",
"ext-intl": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.6.16",
"squizlabs/php_codesniffer": "^3.8.1",
"friendsofphp/php-cs-fixer": "^3.48.0",
"phpmd/phpmd": "^2.15.0",
"vimeo/psalm": "^5.20.0",
"laminas/laminas-coding-standard": "^2.6.0",
"psalm/plugin-phpunit": "^0.18.4",
"phpstan/phpstan": "^1.10.57"
},
"autoload": {
"psr-4": {
"TmiTranslation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TmiTranslationTest\\": "tests/"
}
},
"scripts": {
"autoload": "composer dump-autoload --optimize --apcu",
"template": "bash templatemap.sh",
"check": [
"@cs-check",
"@stan-min",
"@test"
],
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"test": "vendor/bin/phpunit --testdox --colors=always",
"test-coverage": "vendor/bin/phpunit --testdox --colors=always --coverage-clover clover.xml",
"md": "vendor/bin/phpmd ./src ansi ruleset.xml --suffixes php,phtml",
"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 7 --memory-limit 1G --ansi -vvv",
"stan-min": "vendor/bin/phpstan analyse -c phpstan.neon --level 6 --memory-limit 1G --ansi -vvv",
"psalm-check": "vendor/bin/psalm --stats",
"psalm-fix": "vendor/bin/psalm --alter --issues=MissingClosureReturnType,MissingParamType,MissingReturnType,InvalidNullableReturnType,InvalidReturnType --dry-run"
},
"config": {
"optimize-autoloader": true,
"apcu-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}