This is a template for the new project using WordPress. It is heavily based on the work done in project-template.
When starting a new PHP project, do the following:
# Initiate the new work space
mkdir new-project
cd new-project
git init
# Kick off the project (this is needed for --squash merge later)
touch README.md
git add README.md
git commit -m "Initial commit"
# Get project-template
git remote add template https://github.com/QoboLtd/project-template-wordpress.git
git remote update
# Merge latest tag (or use 'template/master' instead)
git merge --squash $(git tag --sort=v:refname | tail -n 1)
git commit -m "Merged project-template-wordpress ($(git tag --sort=v:refname | tail -n 1))"
# Finalize the setup
composer install
./vendor/bin/phake dotenv:create DB_NAME=wordpress
./vendor/bin/phake app:install
DB_NAME, the name of the database to use, is the only setting which is required. The rest is being figured out automatically, but you can easily adjust them. Have a look at .env.example file for defaults.
Now you can develop your PHP project as per usual, but with the following advantages:
- Support for PHP built-in web server (start with
php -S localhost:8000
) - Per-environment configuration using
.env
file, which is ignored by git - Powerful build system (phake-builder) integrated
- Composer integrated with
vendor/
folder added to.gitignore
. - PHPUnit integrated with
tests/
folder and example unit tests. - Sensible defaults for best practices - favicon.ico, robots.txt, MySQL dump, Nginx configuration, GPL, etc.
For example, you can easily automate the build process of your application
by modifying the included Phakefile
. Run the following command to examine
available targets:
./vendor/bin/phake -T
As you can see, there are already some placeholders for your application's build process. By default, it is suggested that you have these:
app:install
- for installation process of your application,app:update
- for the update process of the already installed application, andapp:remove
- for the application removal process and cleanup.
You can, of course, add your own, remove these, or change them any way you want. Have a look at phake-builder documentation for more information on how to use these targets and pass runtime configuration parameters.
###Quick
Now that you have the project template installed, check that it works before you start working on your changes. Fire up the PHP web server:
php -S localhost:8000
In your browser navigate to http://localhost:8000.
You should see the standard phpinfo()
page. If you do, all parts
are in place.
###PHPUnit
project-template brings quite a bit of setup for testing your projects. The first part of this setup is PHPUnit. To try it out, runt the following command (don't worry if it fails, we'll get to it shortly):
./vendor/bin/phpunit
If it didn't work for you, here are some of the things to try:
- If
phpunit
command wasn't found, trycomposer install
and then run the command again. Chances are phpunit was removed during theapp:install
, which runs composer with--no-dev
parameter. - If
phpunit
worked fine, but the tests failed, that's because you probably don't have a web and Selenium server running yet (more on that later). For now, try the simplified test plan:phpunit --exclude-group selenium --exclude-group network
. - If you had some other issue, please let us know.
###Selenium
Selenium is a testing platform that allows one to run tests through a real browser.
Setting this up and getting an example might sound complicated, so project-template
to the rescue. Here is what you need to do:
- Download Selenium Server Standalone JAR file (check
.travis.yml
for newer versions). - Start the web server (in separate terminal or in background):
php -S localhost:8000
- Start the Selenium server (in separate terminal or in background):
java -jar selenium-server-standalone-2.49.0.jar
Now you can run the full test suite with:
./vendor/bin/phpunit
Or just the Selenium tests with:
./vendor/bin/phpunit --group selenium
###Travis CI
Continious Integration is a tool that helps to run your tests whenever you do any changes on your code base (commit, merge, etc). There are many tools that you can use, but project-template provides an example integration with Travis CI.
Have a look at .travis.yml
file, which describes the environment matrix, project installation
steps and ways to run the test suite. For your real project, based on project-template, you'd probably
want to remove the example tests from the file.
###Examples
project-template provides a few examples of how to write and organize unit tests. Have a look
in the tests/
folder. Now you have NO EXCUSE for not testing your applications!
Plugin - Compress PNG for WP (Using TinyPNG API)
This plugin requires an API key from TinyPNG. You can set your key in .env.example file using parameter TINYPNG_API_KEY. A default valid API key has already been added to the template but due to a limited number of requests allowed per key, each project should be using its own key. You can get an API key at https://tinypng.com/developers (one key per email address).