-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 2.05 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
{
"name": "simplepie/utility-pack",
"description": "A set of small utilities for PHP.",
"keywords": [
"php",
"time",
"querystring",
"types",
"url"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Ryan Parman",
"homepage": "https://ryanparman.com"
}
],
"support": {
"issues": "https://github.com/simplepie/utility-pack/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"psr/http-message": "^1.0",
"psr/log": "^1.1"
},
"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",
"slim/slim": "^3.8",
"squizlabs/php_codesniffer": "dev-master",
"thecodingmachine/phpstan-strict-rules": "^0.11.2",
"vimeo/psalm": "^3.4",
"wapmorgan/php-code-analyzer": "^1.0"
},
"config": {
"bin-dir": "bin/",
"classmap-authoritative": true,
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"SimplePie\\UtilityPack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimplePie\\Test\\UtilityPack\\": "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"
}