-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.29 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.29 KB
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
{
"name": "devdesigns/acf-hero-section",
"description": "Customizable ACF Hero section.",
"type": "wordpress-plugin",
"homepage": "https://developingdesigns.com/",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Joe Dooley",
"email": "hello@developingdesigns.com",
"homepage": "https://twitter.com/devdesignstampa/",
"role": "Developer"
},
{
"name": "Developing Designs",
"email": "hello@developingdesigns.com",
"homepage": "https://developingdesigns.com/",
"role": "Company"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/khromov/acf-local-json-manager"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"require-dev": {
"kint-php/kint": "^3.2"
},
"require": {
"php": "^7.3",
"composer/installers": "~1.0",
"khromov/acf-local-json-manager": "master"
},
"autoload": {
"psr-4": {
"DevDesigns\\AcfHeroSection\\": "src/"
},
"files": ["src/setup.php", "src/Acf/acf.php"]
},
"extra": {
"installer-paths": {
"../../plugins/{$name}/": [
"type:wordpress-plugin"
],
"../../mu-plugins/{$name}/": [
"type:wordpress-muplugin"
]
}
}
}