-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.49 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
{
"name": "zendtech/polyfill-mb-ereg",
"description": "Polyfill for mb_ereg(), mb_eregi(), mb_ereg_match(), and mb_ereg_replace*() functions; primary use case is for mbstring on Windows 7.4+",
"license": "BSD-3-Clause",
"keywords": [
"mbstring",
"polyfill",
"zend"
],
"homepage": "https://github.com/zendtech/polyfill-mb-ereg",
"support": {
"issues": "https://github.com/zend-tech/polyfill-mb-ereg/issues",
"source": "https://github.com/zend-tech/polyfill-mb-ereg",
"rss": "https://github.com/zend-tech/polyfill-mb-ereg/releases.atom"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0"
},
"require-dev": {
"php": "^7.3 || ^8.0",
"ext-mbstring": "*",
"laminas/laminas-coding-standard": "~2.3.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"files": [
"src/autoload.php"
],
"psr-4": {
"ZendTech\\Polyfill\\MbEreg\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTechTest\\Polyfill\\MbEreg\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}