Skip to content

Commit

Permalink
WIP: Initial php composer support to install wp plugins and themes
Browse files Browse the repository at this point in the history
  • Loading branch information
mfdeveloper committed Jul 6, 2018
1 parent 8ff56b6 commit ecf5185
Show file tree
Hide file tree
Showing 5 changed files with 393 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# USER => your host's machine user
# UID => Your user ID (to find out, type in terminal => $ id -u)
# GID => Seu grupo (to find out, type in terminal => $ id -g)
UID=
GID=root

DB_NAME=wordpress
DB_USER=wordpress
DB_ROOT_PASSWORD=root
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ db-backup/*.sql
db-backup/*.tar.gz
db-backup/*.zip
db-backup/*.rar

/vendor/
31 changes: 31 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "badassworld/presale-site",
"description": "Sistema/Portal de pré-vendas do grupo do facebook BadassWorld",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Michel Felipe",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url":"https://wpackagist.org"
}
],
"minimum-stability": "stable",
"require": {
"wpackagist-plugin/jetpack":"*",
"wpackagist-plugin/akismet":"4.0.8",
"wpackagist-plugin/woocommerce":"3.4.3",
"wpackagist-plugin/woocommerce-domination":"1.1.6",
"wpackagist-plugin/woocommerce-extra-checkout-fields-for-brazil":"*",
"wpackagist-plugin/woocommerce-gateway-paypal-express-checkout":"*",
"wpackagist-plugin/yith-pre-order-for-woocommerce":"*",
"wpackagist-plugin/admin-custom-login":"*",
"wpackagist-plugin/custom-login":"*",
"wpackagist-theme/storefront":"*"
}
}
338 changes: 338 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ecf5185

Please sign in to comment.