-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
51 lines (51 loc) · 1.46 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
{
"name": "automattic/stream-builder",
"description": "A library for generating a stream of content from a variety of sources.",
"license": "GPL-2.0-or-later",
"type": "library",
"require": {
"php": ">=7.4",
"symfony/yaml": "^4.4.44 || ^5.4.23 || ^6.2.10"
},
"require-dev": {
"ext-mbstring": "*",
"ergebnis/composer-normalize": "^2.8",
"friendsofphp/php-cs-fixer": "^3.18",
"infection/infection": ">=0.10.5",
"phan/phan": ">=1.1",
"php-coveralls/php-coveralls": "^2.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": ">=0.10",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.3",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": ">=2"
},
"minimum-stability": "stable",
"autoload": {
"classmap": [
"lib/"
],
"files": [
"lib/Tumblr/StreamBuilder/Constants.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"TumblrApp\\": "extras/phpcs/TumblrApp",
"TumblrExtras\\": "extras"
},
"classmap": [
"tests",
"extras"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
}
}
}