PHP code example of grahh / artisanplus

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

    

grahh / artisanplus example snippets

 
php artisan make:repository {Model}
// 

php artisan make:service {Name} {?--folder=}
// additional namespace postfix after default config postfix and move file there

php artisan make:vo {Name}
//creates Value Object

php artisan make:repository User --folder=One/Two
//will create UserRepository.php in app_path(your/config/path/One/Two)

php artisan make:service Service
//will create ServiceRepository.php in app_path(your/config/path/)

php artisan make:service One/Two/Service
//will create ServiceRepository.php in app_path(your/config/path/One/Two/)

php artisan:make Some
//creates immutable Value Object Some.php