forked from diablomedia/zf1-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
82 lines (82 loc) · 2.8 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
{
"name": "diablomedia/zendframework1-filter",
"description": "Zend Framework 1 Filter component",
"type": "library",
"keywords": [
"framework",
"zf1"
],
"homepage": "http://framework.zend.com/",
"license": "BSD-3-Clause",
"prefer-stable": true,
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"diablomedia/zendframework1-exception": "^1.1.1",
"diablomedia/zendframework1-config": "^2.0.5",
"diablomedia/zendframework1-loader": "^1.0.5",
"diablomedia/zendframework1-crypt": "^1.0.5",
"diablomedia/zendframework1-date": "^1.0.5",
"diablomedia/zendframework1-locale": "^1.0.6"
},
"autoload": {
"psr-0": {
"Zend_Filter_": "src/"
},
"classmap": [
"src/Zend/Filter.php"
]
},
"autoload-dev": {
"psr-0": {
"Zend_": "tests/"
}
},
"repositories": [
{
"type": "vcs",
"no-api": true,
"url": "https://github.com/diablomedia/phpstorm-stubs"
}
],
"require-dev": {
"phpunit/phpunit": "^9.6.19 || ^10.5.18",
"phpstan/phpstan": "1.10.67",
"friendsofphp/php-cs-fixer": "3.54.0",
"pear/archive_tar": "^1.4.6",
"maglnet/composer-require-checker": "^3.0.0",
"phpro/grumphp-shim": "^2.0.0"
},
"include-path": [
"src/"
],
"archive": {
"exclude": [
"/tests"
]
},
"scripts": {
"test": "phpunit",
"test-with-coverage": "phpunit --coverage-clover=clover.xml",
"phpstan": "phpstan analyze -c phpstan.neon --no-progress --ansi --memory-limit=768M",
"style-check": "php-cs-fixer fix --dry-run -vv"
},
"suggest": {
"ext-iconv": "Optionally used in the Zend_Filter_HtmlEntities filter",
"ext-ctype": "Used in the Zend_Filter_Encrypt_Openssl filter",
"ext-mbstring": "Optionally used in the Zend_Filter_StringToLower/Upper filters",
"ext-mcrypt": "Used in the Zend_Filter_Encrypt_Mcrypt filter",
"ext-zlib": "Used in the Zend_Filter_Compress_Gz filter",
"ext-openssl": "Used in the Zend_Filter_Encrypt_Openssl filter",
"ext-bz2": "Used in the Zend_Filter_Compress_Bz2 and (optionally) in the Zend_Filter_Compress_Tar filters",
"ext-zip": "Used in the Zend_Filter_Compress_Zip filter",
"ext-rar": "Used in the Zend_Filter_Compress_Rar filter",
"ext-lzf": "Used in the Zend_Filter_Compress_Lzf filter",
"pear/archive_tar": "For the Zend_Filter_Compress_Tar filter",
"diablomedia/zendframework1-filter-input": "Provides the separate Zend_Filter_Input component"
},
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true
}
}
}