-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.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
{
"name": "senseexception/intl-sort",
"description": "A wrapper library for PHP Intl to sort values based on rules of locales",
"minimum-stability": "stable",
"type": "library",
"license": "MIT",
"keywords": ["intl", "i18n", "sort", "icu", "sorter", "internationalization", "order", "Collator"],
"authors": [
{
"name": "Claudio Zizza",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-intl": "*"
},
"require-dev": {
"infection/infection": "^0.27.11",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.23",
"doctrine/coding-standard": "^12.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0"
},
"autoload": {
"psr-4": {
"Budgegeria\\IntlSort\\": "src/"
},
"exclude-from-classmap": ["tests/*"]
},
"autoload-dev": {
"psr-4": {
"Budgegeria\\IntlSort\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}