-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
48 lines (48 loc) · 1.2 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
{
"name": "bmarshall511/hello_elementor_child",
"description": "Get a jump start building WordPress themes using Hello Elementor Child, a child theme of Hello Elementor.",
"type": "wordpress-theme",
"homepage": "https://github.com/bmarshall511/hello-elementor-child",
"authors": [
{
"name": "Ben Marshall (bmarshall)",
"homepage": "https://www.benmarshall.me",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/bmarshall511/hello-elementor-child/issues"
},
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"repositories": [
{
"type": "package",
"package": {
"name": "bmarshall511/hello-elementor-child",
"version": "master",
"source": {
"url": "git://github.com/bmarshall511/hello-elementor-child.git",
"type": "git",
"reference": "master"
}
}
}
],
"require": {
"composer/installers": "~1.0",
"bmarshall511/gulp_starter": "dev-master",
"oomphinc/composer-installers-extender": "^2"
},
"extra": {
"installer-types": ["library"],
"installer-paths": {
"assets/": ["bmarshall511/gulp_starter"]
}
},
"scripts": {
"post-create-project-cmd": [
"cd assets; npm install; rm -rf .git;"
]
}
}