-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.05 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.05 KB
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
{
"name": "code-atlantic/chophper",
"description": "HTML text truncation library for PHP",
"version": "1.0.1",
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"masterminds/html5": "^2.8.1"
},
"require-dev": {
"code-atlantic/coding-standards": "^1.1.0",
"phpunit/phpunit": "^4.8.36 || ^7.5 || ^8.0 || ^9.0"
},
"suggest": {
"ext-dom": "Accelerates HTML parsing",
"ext-iconv": "Accelerates character encoding conversions",
"ext-intl": "Accelerates internationalization functions",
"ext-libxml": "Accelerates XML parsing",
"ext-mbstring": "Handles multibyte strings, such as unicode"
},
"license": "MIT",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Chophper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chophper\\Tests\\": "tests/"
}
},
"scripts": {
"format": "vendor/bin/phpcbf --standard=.phpcs.xml.dist --report-summary --report-source",
"lint": "vendor/bin/phpcs --standard=.phpcs.xml.dist",
"test": "vendor/bin/phpunit"
}
}