PHP code example of ixaya / manager

1. Go to this page and download the library: Download ixaya/manager 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/ */

    

ixaya / manager example snippets

bash
cp -r vendor/ixaya/manager/sample/. .
bash
./vendor/bin/phpunit tests/Unit/ExampleTest.php
bash
./vendor/bin/php-cs-fixer fix
bash
./vendor/bin/php-cs-fixer fix --dry-run
bash
./vendor/bin/php-cs-fixer fix --dry-run --diff
bash
/opt/homebrew/opt/[email protected]/bin/php /opt/homebrew/bin/php-cs-fixer fix

application/modules/blog/
├── controllers/
│   ├── Blog.php
│   └── Admin.php
├── models/
│   └── Blog_model.php
├── views/
│   ├── index.php
│   └── detail.php
└── libraries/
    └── Blog_helper.php