-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.34 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
{
"name": "benjaminmedia/wp-cxense",
"description": "This plugin integrates your site with cXense by adding meta tags and calling the cXense api",
"license": "MIT",
"type": "wordpress-plugin",
"keywords": ["wordpress", "plugin"],
"homepage": "https://github.com/BenjaminMedia/wp-cxense",
"authors": [
{
"name": "Bonnier Publications",
"email": "[email protected]",
"homepage": "http://bonnierpublications.com"
}
],
"config": {
"preferred-install": "dist",
"platform": {
"php": "7.4.13"
}
},
"require": {
"php": ">=7.4",
"bordoni/phpass": "^0.3",
"bonnier/willow-mu-plugins": "^2.0",
"illuminate/support": "^8.83"
},
"require-dev": {
"composer-plugin-api": "^1.1",
"johnpbloch/wordpress": "^5.8",
"lucatume/wp-browser": "^3.1",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0"
},
"autoload": {
"psr-4": {
"Bonnier\\WP\\Cxense\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bonnier\\WP\\Cxense\\Tests\\": "tests"
}
},
"scripts": {
"wpunit": "vendor/bin/codecept run wpunit"
}
}