-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
74 lines (74 loc) · 1.76 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
{
"name": "mihdan/mihdan-mailru-pulse-feed",
"description": "Плагин, формирует ленту для рекомендательной системы Пульс от компании Mail.ru",
"license": "GPL-2.0-or-later",
"keywords": [
"mailru",
"feed",
"mihdan",
"mail.ru",
"russian"
],
"homepage": "https://github.com/mihdan/mihdan-mailru-pulse-feed",
"type": "wordpress-plugin",
"authors": [
{
"name": "Mikhail Kobzarev",
"email": "[email protected]",
"homepage": "https://www.kobzarev.com/"
}
],
"support": {
"issues": "https://github.com/mihdan/mihdan-mailru-pulse-feed/issues"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.4",
"composer/installers": "^2.2",
"wptrt/admin-notices": "^1.0",
"ext-dom": "*",
"ext-libxml": "*",
"imangazaliev/didom": "^2.0",
"symfony/serializer": "^5.4"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"wp-cli/wp-cli": "*",
"vimeo/psalm": "^4.30",
"humanmade/psalm-plugin-wordpress": "^2.0"
},
"autoload": {
"classmap": [
"src"
]
},
"autoload-dev": {
"classmap": [
"src"
]
},
"scripts": {
"phpcs": "phpcs --standard=./phpcs.xml",
"phpcbf": "phpcbf --standard=./phpcs.xml",
"psalm": "psalm --config=psalm.xml"
}
}