Skip to content

Commit b017939

Browse files
author
Tom Hanoldt
committed
add bower and composer
1 parent ab2adbb commit b017939

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
### Setup
44
```
5+
bower install --save creative-workflow.sass
6+
bower install --save creative-workflow.php
7+
bower install --save creative-workflow.wordpress
8+
9+
or
10+
11+
composer require creative-workflow/sass
12+
composer require creative-workflow/php
13+
composer require creative-workflow/wordpress
14+
15+
or
16+
517
git submodule add https://github.com/creative-workflow/lib-wordpress.git ./wordpress/wp-content/themes/child/lib/cw/wp
618
git submodule add https://github.com/creative-workflow/lib-php.git ./wordpress/wp-content/themes/child/lib/cw/php
719
git submodule add https://github.com/creative-workflow/lib-sass.git ./wordpress/wp-content/themes/child/lib/cw/sass

bower.json

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

composer.json

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

0 commit comments

Comments
 (0)