-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.03 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
{
"name": "ringierimu/ringier-bus",
"description": "A plugin to push events to Ringier CDE via the BUS API whenever an article is created, updated or deleted",
"keywords": ["wordpress", "plugin", "cde", "bus"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Wasseem Khayrattee",
"email": "[email protected]"
}
],
"type": "wordpress-plugin",
"config": {
"vendor-dir": "includes/vendor",
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/installers": true
}
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"RingierBusPlugin\\": "src/Core"
},
"files": ["src/ringier_bus_plugin_helper.php"]
},
"require": {
"monolog/monolog": "3.7.0",
"timber/timber": "2.2.0",
"guzzlehttp/guzzle": "7.8.1",
"symfony/cache": "6.4.8",
"ramsey/uuid": "4.7.6"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org/"
}
]
}