Skip to content

Commit c39a0cf

Browse files
author
Tom Hanoldt
committed
add composer and bower
1 parent 466a5cc commit c39a0cf

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ Make Divi module development smart for developers. See module implemenatation he
44

55
### Setup
66
```
7+
bower install --save creative-workflow.sass
8+
bower install --save creative-workflow.php
9+
bower install --save creative-workflow.wordpress
10+
bower install --save creative-workflow.divi
11+
12+
or
13+
14+
composer require creative-workflow/sass
15+
composer require creative-workflow/php
16+
composer require creative-workflow/wordpress
17+
composer require creative-workflow/divi
18+
19+
or
20+
21+
722
git submodule add https://github.com/creative-workflow/lib-divi.git ./wordpress/wp-content/themes/child/lib/cw/divi
823
git submodule add https://github.com/creative-workflow/lib-wordpress.git ./wordpress/wp-content/themes/child/lib/cw/wp
924
git submodule add https://github.com/creative-workflow/lib-php.git ./wordpress/wp-content/themes/child/lib/cw/php

bower.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "creative-workflow.divi",
3+
"homepage": "https://github.com/creative-workflow/lib-divi",
4+
"authors": [
5+
"Tom Hanoldt <[email protected]>"
6+
],
7+
"description": "wordpress divi helper library",
8+
"main": "",
9+
"keywords": [
10+
"creative-workflow",
11+
"divi",
12+
"lib-divi",
13+
"wordpress"
14+
],
15+
"license": "MIT",
16+
"ignore": [
17+
"**/.*",
18+
"node_modules",
19+
"bower_components",
20+
"test",
21+
"tests"
22+
]
23+
}

composer.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "creative-workflow/divi",
3+
"type": "library",
4+
"homepage": "https://github.com/creative-workflow/lib-divi",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Tom Hanoldt",
9+
"email": "[email protected]",
10+
"homepage": "https://www.tomhanoldt.info",
11+
"role": "Developer"
12+
}
13+
],
14+
"keywords": [
15+
"creative-workflow",
16+
"divi",
17+
"lib-divi",
18+
"wordpress"
19+
],
20+
"description": "wordpress divi helper library",
21+
"autoload" : {
22+
"psr-0" : {"./" : ""}
23+
}
24+
}

0 commit comments

Comments
 (0)