-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc3ffe2
commit 50edb2b
Showing
18 changed files
with
355 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
indent_style = tab | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.php] | ||
indent_size = 4 | ||
indent_style = tab | ||
indent_size = 4 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,64 @@ | ||
{ | ||
"name": "rafadiot/vayne", | ||
"type": "project", | ||
"license": "MIT", | ||
"description": "Vayne is a folder structure for Wordpress implement Bedrock.", | ||
"authors": [ | ||
{ | ||
"name": "Tuan Le Minh", | ||
"email": "minhtuanchannhan@gmail.com", | ||
"homepage": "https://github.com/rafadiot" | ||
} | ||
], | ||
"keywords": [ | ||
"vayne", | ||
"rafadiot", | ||
"wordpress folder structure", | ||
"bedrock" | ||
], | ||
"support": { | ||
"issues": "https://github.com/rafadiot/vayne/issues" | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
}, | ||
"require": { | ||
"php": ">=7.1", | ||
"composer/installers": "^1.4", | ||
"vlucas/phpdotenv": "^3.0.0", | ||
"oscarotero/env": "^1.1.0", | ||
"roots/wordpress": "5.1.1", | ||
"roots/wp-config": "1.0.0", | ||
"roots/wp-password-bcrypt": "1.0.0", | ||
"timber/timber": "^1.9" | ||
}, | ||
"require-dev": { | ||
"squizlabs/php_codesniffer": "^3.0.2", | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"extra": { | ||
"installer-paths": { | ||
"web/app/mu-plugins/{$name}/": [ | ||
"type:wordpress-muplugin" | ||
], | ||
"web/app/plugins/{$name}/": [ | ||
"type:wordpress-plugin" | ||
], | ||
"web/app/themes/{$name}/": [ | ||
"type:wordpress-theme" | ||
] | ||
}, | ||
"wordpress-install-dir": "web/back_office" | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"php -r \"copy('.env.example', '.env');\"" | ||
], | ||
"test": [ | ||
"phpcs" | ||
] | ||
} | ||
"name": "rafadiot/vayne", | ||
"type": "project", | ||
"license": "MIT", | ||
"description": "Vayne is a folder structure for Wordpress implement Bedrock.", | ||
"authors": [ | ||
{ | ||
"name": "Tuan Le Minh", | ||
"email": "minhtuanchannhan@gmail.com", | ||
"homepage": "https://github.com/rafadiot" | ||
} | ||
], | ||
"keywords": [ | ||
"vayne", | ||
"rafadiot", | ||
"wordpress folder structure", | ||
"bedrock" | ||
], | ||
"support": { | ||
"issues": "https://github.com/rafadiot/vayne/issues" | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist" | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"require": { | ||
"php": ">=7.1", | ||
"composer/installers": "^1.4", | ||
"vlucas/phpdotenv": "^3.0.0", | ||
"oscarotero/env": "^1.1.0", | ||
"roots/wordpress": "5.1.1", | ||
"roots/wp-config": "1.0.0", | ||
"roots/wp-password-bcrypt": "1.0.0", | ||
"timber/timber": "^1.9" | ||
}, | ||
"require-dev": { | ||
"squizlabs/php_codesniffer": "^3.0.2", | ||
"roave/security-advisories": "dev-master" | ||
}, | ||
"extra": { | ||
"installer-paths": { | ||
"web/app/mu-plugins/{$name}/": [ | ||
"type:wordpress-muplugin" | ||
], | ||
"web/app/plugins/{$name}/": [ | ||
"type:wordpress-plugin" | ||
], | ||
"web/app/themes/{$name}/": [ | ||
"type:wordpress-theme" | ||
] | ||
}, | ||
"wordpress-install-dir": "public/back_office" | ||
}, | ||
"scripts": { | ||
"post-root-package-install": [ | ||
"php -r \"copy('.env.example', '.env');\"" | ||
], | ||
"test": [ | ||
"phpcs" | ||
] | ||
} | ||
} |
Oops, something went wrong.