Download the PHP package ixa/wordpress-starter without Composer

On this page you can find all versions of the php package ixa/wordpress-starter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wordpress-starter

Ixa WordPress Starter

WordPress project starter that works with Composer and WP-CLI

Installation

$ composer create-project ixa/wordpress-starter <project-name> --prefer-dist
$ cd <project-name>

This command clones Ixa WordPress Starter and downloads all of its dependencies. It also ask your enviroment variables: database credentials and home_url.

If your database is ready you can install WordPress typing:

$ vendor/bin/wp core install --promt

If wp-cli prints a success message the installation is completed. You can use the PHP build in server to see your new site in htpp://localhost:1234

$ php -S localhost:1234

Configuration

In Ixa WordPress Starter, wp-config.php file is not meant to hold configuration all constants are set by Ixa WP-Config and are located in config folder.

.env.yml file

This file is dynamically created by Composer in every installation or update and must not be added to version control. The env.yml.dist is needed to tell Incenteev/ParameterHandler what variables are required and should not be modified.

Default Theme

Ixa WordPress Starter ships with a default theme that contains only the welcome message you see after installation and is set in wp-config.php using WP_DEFAULT_THEME constant. You can override to register your theme, this way, no database configuration is needed and the app is more portable.

WP-CLI Scaffold

Using WP-CLI you can create a new theme with the scaffold command

$ vendor/bin/wp scaffold _s <theme-name>

Then you have a new theme based on Underscores ready to start.

Child Themes

Since we are using Composer, the recommended way to use child themes is to register the parent theme as dependency in composer.json, just make sure the project type is wordpress-theme, so that Composer Installer knows where to install it.

Note that if you want to register the child theme using WP_DEFAULT_THEME constant you must define TEMPLATEPATH as this article suggests.


All versions of wordpress-starter with dependencies

PHP Build Version
Package Version
Requires php Version >5.3
ixa/wordpress-core Version ~3.8
incenteev/composer-parameter-handler Version ~2.0
ixa/wp-config Version ~0.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ixa/wordpress-starter contains the following files

Loading the files please wait ...