-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
63 lines (63 loc) · 1.71 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
{
"name": "slm/locale",
"description": "Automatic detection of locales for Laminas",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"zf",
"zend framework",
"i18n",
"locale"
],
"homepage": "https://github.com/juriansluiman/SlmLocale",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@juriansluiman.nl",
"homepage": "http://juriansluiman.nl"
}
],
"require": {
"php": "^7.2 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-intl": "*",
"laminas/laminas-eventmanager": "^3.1",
"laminas/laminas-http": "^2.7",
"laminas/laminas-modulemanager": "^2.8.2",
"laminas/laminas-router": "^3.0",
"laminas/laminas-servicemanager": "^3.2",
"laminas/laminas-stdlib": "^3.2.1",
"laminas/laminas-view": "^2.9.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13.0",
"laminas/laminas-mvc": "^3.1",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.26",
"php-coveralls/php-coveralls": "^2.4.3"
},
"suggest": {
"laminas/laminas-mvc": "For using the router in the UriPath strategy"
},
"autoload": {
"psr-4": {
"SlmLocale\\": "src/SlmLocale/"
}
},
"autoload-dev": {
"psr-4": {
"SlmLocaleTest\\": "tests/SlmLocaleTest/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"test": "phpunit --colors=always"
}
}