-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
92 lines (92 loc) · 2.53 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
83
84
85
86
87
88
89
90
91
92
{
"name": "simplepie/simplepie-ng",
"description": "A modern feed parsing library for PHP.",
"keywords": [
"php",
"rss",
"atom",
"json",
"feed",
"xml",
"dublincore",
"rdf",
"simplepie",
"ng"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Parman",
"homepage": "http://ryanparman.com"
}
],
"support": {
"issues": "https://github.com/simplepie/simplepie-ng/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-date": "*",
"ext-dom": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-Reflection": "*",
"ext-SimpleXML": "*",
"ext-SPL": "*",
"lib-curl": "*",
"lib-ICU": "*",
"lib-libxml": "*",
"lib-pcre": "*",
"guzzlehttp/psr7": "^1.5",
"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.9",
"vimeo/psalm": "^3.4",
"wapmorgan/php-code-analyzer": "^1.0"
},
"config": {
"bin-dir": "bin/",
"classmap-authoritative": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"SimplePie\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimplePie\\Test\\": "tests/"
}
},
"suggest": {
"bramus/monolog-colored-line-formatter": "Color-codes your Monolog messages by severity.",
"monolog/monolog": "A high-quality PSR-3 logging library."
},
"readme": "README.md"
}