Download the PHP package windwalker/rad-development-bundle without Composer

On this page you can find all versions of the php package windwalker/rad-development-bundle. 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 rad-development-bundle

Windwalker Joomla RAD Development Bundle

Some helpful command line tools to operate database for development.

Table of Content

Installation via Composer

Commands

SQL Sync

Windwalker Sqlsync is a powerful SQL compare & diff tools help developers update their SQL schema.

Why Not Migration Tools?

Actually, we are developing a migration tools for Joomla & Windwalker now, but migration is not so suitable for Joomla CMS, sometimes we will want to sync Joomla articles, modules, extensions and menus to your production server. Migration tools are hard to do this.

So, using Sqlsync tools will help you compare sql schema between your local & remote machine, simply run export in your local, and git track all schema YAML files. Then push your files to remote server and run import, all schemas will update to remote.

Currently Sqlsync are weak on column name change, you can use hooks to do this.

Export & Import SQL Schema

Scheam will export to resources/sqlsync/default/schema.yml

Track Tables

Table track information stores in resources/sqlsync/default/track.yml

Default is:

There are 3 track rules:

All table which not list in track.yml will be none.

Sync Track Tables

If you installed a new component, there may be multiple tables added to ypur database, you can run:

To auto add all non-tracked table to track.yml

Status

This command help you check table track information.

p-2016-04-05-006

Profiles

You can change profile by use

Now you can export schema to other profile, this is very similar to git branches.

Quick import & export to profile

You don't need to always checkout profiles, add profiles as arguments in commands.

This operations can support export / import both commands.

Rename Column

Modify From property in your schema files.

All oldnames in From property will convert to newname

Currently Sqlsync are weak on column name change, try avoid to do this operation.

Export & Import Hooks

Add these files to profile folder.

And simply write your script to do something.

Seeder

Windwalker Developement Bundle provides a simple seeder and faker tools to help you generate fake data.

Open resources/seeders/DatabaseSeeder.php, you will see DatabaseSeeder default class:

Add a new seeder class at resources/seeders/ProductSeeder.php

And set this class to DatabaseSeeder, you must sort seeders by denpendencies.

Now run seeder by:

Or clear it


All versions of rad-development-bundle with dependencies

PHP Build Version
Package Version
Requires fzaninotto/faker Version 1.*
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 windwalker/rad-development-bundle contains the following files

Loading the files please wait ....