-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.76 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
{
"name": "fabiang/laminas-localize-helper",
"description": "Laminas module for setting locale to all view helpers, validators and filters",
"type": "library",
"license": "BSD-2-Clause",
"keywords": [
"laminas",
"module",
"laminas-module",
"i18n",
"localization"
],
"authors": [
{
"name": "Fabian Grutschus",
"email": "f.grutschus@lubyte.de"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-filter": "^2.0",
"laminas/laminas-servicemanager": "^3.0",
"laminas/laminas-validator": "^2.0",
"laminas/laminas-view": "^2.0",
"psr/container": "^1 || ^2"
},
"autoload": {
"psr-4": {
"Fabiang\\LocalizeHelper\\": "src/"
}
},
"require-dev": {
"behat/behat": "^3.2.1",
"phpunit/phpunit": "^9.6.16 || ^10.0",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-router": "^3.5",
"laminas/laminas-i18n": "^2.14",
"laminas/laminas-mvc-i18n": "^1.3",
"phpspec/prophecy-phpunit": "^2.0",
"vimeo/psalm": "^5.21",
"laminas/laminas-coding-standard": "^2.5"
},
"autoload-dev": {
"psr-4": {
"Fabiang\\LocalizeHelper\\Behat\\": "tests/features/bootstrap/"
}
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm",
"phpunit": "phpunit",
"behat": "behat",
"test": [
"@psalm",
"@phpcs",
"@phpunit",
"@behat"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}