-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
71 lines (71 loc) · 2.06 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": "eventjet/i18n",
"description": "Library to handle Internationalization and language mappings",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Rudolph Gottesheim",
"email": "r.gottesheim@loot.at"
},
{
"name": "Thomas Rieschl",
"email": "thomas.rieschl@eventjet.at"
}
],
"require": {
"php": ">=8.1",
"ext-intl": "*",
"ext-json": "*"
},
"require-dev": {
"eventjet/coding-standard": "^3.0",
"infection/infection": "^0.26.0",
"maglnet/composer-require-checker": "^3.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.4",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.4"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Eventjet\\I18n\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"EventjetTest\\I18n\\": "tests/unit"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@phpstan",
"@psalm",
"@phpunit",
"@infection"
],
"check-deps": "vendor/bin/composer-require-checker",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"infection": "vendor/bin/infection --threads=4",
"infection-xdebug": "@composer run infection -- --initial-tests-php-options='-d zend_extension=xdebug.so'",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
}
}