-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.16 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
{
"name": "orisai/localization",
"description": "Internationalization (i18n) and localization (l10n)",
"keywords": [
"bcp-47",
"i18n",
"internationalization",
"l10n",
"localization",
"nette",
"orisai",
"translation"
],
"type": "library",
"license": "MPL-2.0",
"homepage": "https://github.com/orisai/localization",
"authors": [
{
"name": "Marek Bartoš",
"homepage": "https://github.com/mabar"
}
],
"require": {
"php": "7.4 - 8.3",
"nette/utils": "^3.2.0|^4.0.0",
"orisai/data-sources": "^1.0.0",
"orisai/exceptions": "^1.0.0",
"orisai/translation-contracts": "^1.0.0",
"psr/log": "^1.1.0|^2.0.0|^3.0.0",
"symfony/filesystem": "^5.4.0|^6.0.0|^7.0.0",
"symfony/polyfill-php80": "^1.22.0",
"webmozart/glob": "^4.2.0"
},
"require-dev": {
"ext-intl": "*",
"brianium/paratest": "^6.3.0",
"cweagans/composer-patches": "^1.7.3",
"infection/infection": "^0.26.0|^0.27.0|^0.28.0|^0.29.0",
"latte/latte": "^2.5.0|^3.0.4",
"nette/application": "^3.1.0",
"nette/caching": "^3.1.0",
"nette/di": "^3.0.5",
"orisai/coding-standard": "^3.0.0",
"orisai/nette-di": "^1.0.3",
"phpstan/extension-installer": "^1.0.0",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-nette": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^9.5.0",
"staabm/annotate-pull-request-from-checkstyle": "^1.7.0",
"symfony/polyfill-intl-messageformatter": "^1.10.0",
"symfony/translation-contracts": "^2.0.0|^3.5.0",
"tracy/tracy": "^2.7.2"
},
"autoload": {
"psr-4": {
"Orisai\\Localization\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Orisai\\Localization\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
},
"extra": {
"patches": {
"infection/infection": {
"Class not found error fix": "tests/Patches/mutations-invalid-file-error.patch"
}
}
}
}