PHP code example of windwalker / rad-development-bundle

1. Go to this page and download the library: Download windwalker/rad-development-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

windwalker / rad-development-bundle example snippets

 bash
php bin/windwalker sql export

php bin/windwalker sql import
 bash 
php bin/windwalker sql table sync
 bash
php bin/windwalker sql status
 bash
# List profile
php bin/windwalker sql profile

# Create & checkout profile
php bin/windwalker sql profile create test
php bin/windwalker sql profile checkout test
 php
pre-export.php
post-export.php
pre-import.php
post-import.php
 php
// ...

	public function doExecute()
	{
		$this->execute(new CategorySeeder);

		$this->execute(new ProductSeeder);

		$this->execute(new OrderSeeder);
	}

	public function doClear()
	{
		$this->clear(new CategorySeeder);

		$this->clear(new ProductSeeder);

		$this->clear(new OrderSeeder);
	}
 bash
php bin/windwalker seed export