-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 866 Bytes
/
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
{
"name": "jakubpolomsky/php-requirements-checker",
"description": "Library for checking whether required php extensions are loaded.",
"minimum-stability": "stable",
"license": "GPL-3.0-only",
"require": {
"ext-intl": ">=1.0.0",
"ext-mcrypt": ">=0.0.1",
"php": ">=5.6",
"ext-libxml": "*",
"ext-dom": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --color=always",
"test-coverage": "phpunit --coverage-clover build/coverage/xml"
},
"autoload": {
"psr-4": {
"jakubpolomsky\\phpRequirementsChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"jakubpolomskyTest\\phpRequirementsChecker\\": "test/"
}
}
}