forked from devgeniem/acf-codifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 976 Bytes
/
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
{
"name": "devgeniem/acf-codifier",
"type": "wordpress-muplugin",
"description": "ACF Codifier",
"authors": [
{
"name": "Miika Arponen",
"email": "[email protected]",
"homepage": "http://geniem.com/",
"role": "Developer"
}
],
"keywords": [
"wordpress", "acf"
],
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"repositories": [
{
"type": "git",
"url": "ssh://[email protected]/devgeniem/acf-codifier.git"
}
],
"conflict": {
"devgeniem/redipress": "<2.0"
},
"autoload": {
"psr-4": {"Geniem\\ACF\\": "src/"}
},
"scripts": {
"update-docs": "./vendor/victorjonsson/markdowndocs/phpdoc-md generate --ignore=Fields,External src > docs/classes.md"
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"victorjonsson/markdowndocs": "^1.3"
}
}