-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2.14 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
{
"name": "simplepie/text-encoder",
"description": "Modern character encoding detection and conversion using Intl and ICU.",
"keywords": [
"php",
"simplepie",
"character",
"encoding",
"set",
"utf-8"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Parman",
"homepage": "http://ryanparman.com"
}
],
"support": {
"issues": "https://github.com/simplepie/text-encoder/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-SPL": "*",
"lib-ICU": "*",
"psr/log": "^1.1",
"simplepie/utility-pack": "^2.2"
},
"require-dev": {
"bramus/monolog-colored-line-formatter": "^3.0",
"friendsofphp/php-cs-fixer": "^2.14",
"mamuz/php-dependency-analysis": "dev-master",
"monolog/monolog": "^1.24",
"pdepend/pdepend": "^2.5",
"pepakriz/phpstan-exception-rules": "^0.8.2",
"phan/phan": "^2.1",
"php-coveralls/php-coveralls": "^2.0",
"phploc/phploc": "^5.0",
"phpmetrics/phpmetrics": "^2.4",
"phpstan/phpstan": "^0.11.8",
"phpstan/phpstan-deprecation-rules": "^0.11.2",
"phpstan/phpstan-strict-rules": "^0.11.1",
"phpunit/phpunit": "^8.1",
"sebastian/phpcpd": "^4.0",
"squizlabs/php_codesniffer": "dev-master",
"thecodingmachine/phpstan-strict-rules": "^0.11.2",
"twig/twig": "^2.11",
"vimeo/psalm": "^3.4",
"wapmorgan/php-code-analyzer": "^1.0"
},
"config": {
"bin-dir": "bin/",
"classmap-authoritative": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"TextEncoder\\": "src/",
"TextEncoder\\Test\\": "tests/"
}
},
"readme": "README.md",
"suggest": {
"bramus/monolog-colored-line-formatter": "Color-codes your Monolog messages by severity.",
"monolog/monolog": "A high-quality PSR-3 logging library."
}
}