Skip to content

Commit fe91246

Browse files
committed
First commit
0 parents  commit fe91246

File tree

112 files changed

+4191
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+4191
-0
lines changed

.editorconfig

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.php]
14+
indent_size = 4

.env.example

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
DB_NAME=database_name
2+
DB_USER=database_user
3+
DB_PASSWORD=database_password
4+
DB_HOST=database_host
5+
6+
WP_ENV=development
7+
WP_HOME=http://example.com
8+
WP_SITEURL=${WP_HOME}/wp
9+
10+
# Generate your keys here: https://roots.io/salts.html
11+
AUTH_KEY='generateme'
12+
SECURE_AUTH_KEY='generateme'
13+
LOGGED_IN_KEY='generateme'
14+
NONCE_KEY='generateme'
15+
AUTH_SALT='generateme'
16+
SECURE_AUTH_SALT='generateme'
17+
LOGGED_IN_SALT='generateme'
18+
NONCE_SALT='generateme'

.github/CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please read [Contributing to Roots Projects](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md)

.github/ISSUE_TEMPLATE.md

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
## Submit a feature request or bug report
2+
3+
- [ ] I've read the [guidelines for Contributing to Roots Projects](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md)
4+
- [ ] This is a feature request
5+
- [ ] This is a bug report
6+
- [ ] This request isn't a duplicate of an [existing issue](https://github.com/roots/bedrock/issues)
7+
- [ ] I've read the [docs](https://roots.io/bedrock/docs) and followed them (if applicable)
8+
9+
Replace any `X` with your information.
10+
11+
---
12+
13+
**What is the current behavior?**
14+
15+
X
16+
17+
18+
**What is the expected or desired behavior?**
19+
20+
X
21+
22+
---
23+
24+
## Bug report
25+
26+
(delete this section if not applicable)
27+
28+
**Please provide steps to reproduce, including full log output:**
29+
30+
X
31+
32+
**Please describe your local environment:**
33+
34+
Bedrock version: X
35+
36+
WordPress version: X
37+
38+
PHP version:
39+
40+
OS:
41+
42+
**Where did the bug happen? Development or remote servers?**
43+
44+
X
45+
46+
**Is there a related [Discourse](https://discourse.roots.io/c/bedrock) thread or were any utilized (please link them)?**
47+
48+
X
49+
50+
---
51+
52+
## Feature Request
53+
54+
(delete this section if not applicable)
55+
56+
**Please provide use cases for changing the current behavior:**
57+
58+
X
59+
60+
**Other relevant information:**
61+
62+
X

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Application
2+
web/app/plugins/*
3+
!web/app/plugins/.gitkeep
4+
web/app/mu-plugins/*/
5+
web/app/upgrade
6+
web/app/uploads/*
7+
!web/app/uploads/.gitkeep
8+
9+
# WordPress
10+
web/wp
11+
web/.htaccess
12+
13+
# WP-CLI
14+
db-sync
15+
sql-dump-*.sql
16+
17+
# Dotenv
18+
.env
19+
.env.*
20+
!.env.example
21+
22+
# Vendor (e.g. Composer)
23+
vendor/*
24+
!vendor/.gitkeep
25+
26+
# Node Package Manager
27+
node_modules
28+
29+
# Vagrant
30+
bin
31+
.vagrant

.travis.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
sudo: false
2+
language: php
3+
php:
4+
- 7.0
5+
- 5.6
6+
- 5.5
7+
- nightly
8+
9+
matrix:
10+
fast_finish: true
11+
allow_failures:
12+
- php: nightly
13+
14+
cache:
15+
apt: true
16+
directories:
17+
- $HOME/.composer/cache
18+
- vendor
19+
20+
before_install:
21+
- phpenv config-rm xdebug.ini
22+
- composer self-update
23+
24+
install:
25+
- composer install -o --prefer-dist --no-interaction
26+
27+
script:
28+
- composer test

CHANGELOG.md

+171
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
### 1.6.3: 2016-05-06
2+
3+
* Update to WordPress 4.5.2
4+
5+
### 1.6.2: 2016-04-26
6+
7+
* Update to WordPress 4.5.1
8+
9+
### 1.6.1: 2016-04-12
10+
11+
* Update to WordPress 4.5
12+
* Update coding standards (PSR-2) ([#244](https://github.com/roots/bedrock/pull/244))
13+
14+
### 1.6.0: 2016-03-03
15+
16+
* Add wp-password-bcrypt for more secure passwords ([#243](https://github.com/roots/bedrock/pull/243))
17+
18+
### 1.5.4: 2016-02-29
19+
20+
* Use HTTPS for wpackagist.org
21+
22+
### 1.5.3: 2016-02-03
23+
24+
* Update to WordPress 4.4.2
25+
26+
### 1.5.2: 2016-02-01
27+
28+
* Bump `composer/installers` dependency to 1.0.23 to fix deprecation notice
29+
30+
### 1.5.1: 2016-01-27
31+
32+
* Use [oscarotero/env](https://github.com/oscarotero/env) instead of `getenv` ([#229](https://github.com/roots/bedrock/pull/233))
33+
34+
### 1.5.0: 2016-01-17
35+
36+
* Fix `DISABLE_WP_CRON` setting via ENV variable ([#229](https://github.com/roots/bedrock/pull/229))
37+
* Set default `DB_CHARSET` to `utf8mb4`
38+
39+
### 1.4.7: 2016-01-07
40+
41+
* Update to WordPress 4.4.1
42+
43+
### 1.4.6: 2015-12-09
44+
45+
* Update to WordPress 4.4
46+
47+
### 1.4.5: 2015-09-16
48+
49+
* Update to WordPress 4.3.1
50+
* Bump minimum required PHP version to 5.5 ([#201](https://github.com/roots/bedrock/pull/201))
51+
52+
### 1.4.4: 2015-08-18
53+
54+
* Update to WordPress 4.3
55+
56+
### 1.4.3: 2015-08-04
57+
58+
* Update to WordPress 4.2.4
59+
60+
### 1.4.2: 2015-07-24
61+
62+
* Update to WordPress 4.2.3
63+
64+
### 1.4.1: 2015-06-30
65+
66+
* Dotenv 2.0.1 update
67+
68+
### 1.4.0: 2015-06-07
69+
70+
* Removed .env generation script
71+
72+
### 1.3.7: 2015-05-07
73+
74+
* Update to WordPress 4.2.2
75+
76+
### 1.3.6: 2015-04-27
77+
78+
* Update to WordPress 4.2.1
79+
80+
### 1.3.5: 2015-04-23
81+
82+
* Update to WordPress 4.2
83+
* Update to WordPress 4.1.2
84+
* Don't register theme directory if `WP_DEFAULT_THEME` is defined
85+
* Move Capistrano configs to https://github.com/roots/bedrock-capistrano
86+
87+
### 1.3.4: 2015-02-18
88+
89+
* WordPress 4.1.1 fix
90+
91+
### 1.3.3: 2015-02-18
92+
93+
* Update to WordPress 4.1.1
94+
* mu-plugins autoloader Multisite fix
95+
* Coding standards update + TravisCI integration
96+
97+
### 1.3.2: 2014-12-18
98+
99+
* Update to WordPress 4.1
100+
* Remove WPLANG constant
101+
102+
### 1.3.1: 2014-11-28
103+
104+
* Add Capistrano task to fix/update WP theme paths after deploys
105+
106+
### 1.3.0: 2014-11-20
107+
108+
* Update to WordPress 4.0.1
109+
* Use johnpbloch/wordpress package instead of custom repository
110+
* Update default deploy.rb
111+
* Require PHP >= 5.4 in composer.json
112+
* Better PSR-1 adherence
113+
* Update phpdotenv dependency to 1.0.9
114+
* Fix Composer installer path plugin order
115+
* Add bedrock-autoloader mu-plugin
116+
117+
### 1.2.7: 2014-09-04
118+
119+
* Update to WordPress 4.0
120+
121+
### 1.2.6: 2014-08-06
122+
123+
* Update to WordPress 3.9.2
124+
* Minor deploy fix
125+
* Doc updates
126+
127+
### 1.2.5: 2014-07-16
128+
129+
* Update to WordPress 3.9.1
130+
* Doc updates
131+
* Add `DB_PREFIX` constant
132+
* Update Gem versions
133+
* Disallow indexing in non-production environments
134+
135+
### 1.2.4: 2014-04-17
136+
137+
* Fixes issue with 3.9 update (`composer.lock` wasn't updated)
138+
139+
### 1.2.3: 2014-04-16
140+
141+
* Update to WordPress 3.9
142+
143+
### 1.2.2: 2014-04-14
144+
145+
* Update to WordPress 3.8.3
146+
* Only run `Dotenv::load` if `.env` file exists
147+
148+
### 1.2.1: 2014-04-08
149+
150+
* Update to WordPress 3.8.2
151+
152+
### 1.2.0: 2014-04-07
153+
154+
* WP package now has `wordpress` vendor name: `wordpress/wordpress`
155+
* Remove wp-cli and add `wp-cli.yml` config
156+
157+
### 1.1.1: 2014-03-11
158+
159+
* Update phpdotenv to 1.0.6
160+
* Update wp-cli to v0.14.1
161+
* Update README to refence new WordPress Packagist namespaces
162+
* Fix uploads path in `linked_dirs` for Capistrano deploys
163+
164+
### 1.1.0: 2014-03-01
165+
166+
* Update to Capistrano 3.1.0: `deploy:restart` is no longer run by default
167+
* Better webroot structure: introduces the `/web` directory as the document/web root for web server vhosts
168+
169+
### 1.0.0: 2013-12-18
170+
171+
* Initial release

LICENSE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) Roots
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of
4+
this software and associated documentation files (the "Software"), to deal in
5+
the Software without restriction, including without limitation the rights to
6+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
7+
of the Software, and to permit persons to whom the Software is furnished to do
8+
so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19+
SOFTWARE.

0 commit comments

Comments
 (0)