forked from mosparo/wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.29 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
{
"name": "mosparo/wordpress-plugin",
"description": "Plugin for WordPress to integrate mosparo.",
"homepage": "https://mosparo.io/plugins/wordpress/",
"keywords": ["mosparo", "wordpress", "plugin"],
"type": "wordpress-plugin",
"license": "MIT",
"authors": [
{
"name": "mosparo",
"homepage": "https://mosparo.io"
}
],
"require": {
"php": ">=7.4.0 <8.1.0 || >=8.1.10",
"mosparo/php-api-client": "^1.1"
},
"require-dev": {
"brianhenryie/strauss": "^0.14.0"
},
"extra": {
"mozart": {
"target_directory": "vendor-prefixed",
"dep_namespace": "MosparoDependencies\\",
"classmap_prefix": "MosparoDependencies_",
"constant_prefix": "MOS_",
"packages": [
"mosparo/php-api-client"
],
"delete_vendor_packages": false,
"delete_vendor_files": false,
"include_author": false,
"include_modified_date": false
}
},
"scripts": {
"post-install-cmd": [
"vendor/bin/strauss",
"scripts/copy-licenses.php"
],
"post-update-cmd": [
"vendor/bin/strauss",
"scripts/copy-licenses.php"
]
}
}