PHP code example of determined-development / laradev

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

    

determined-development / laradev example snippets

bash
php artisan make:facade Foo

  INFO  Facade [app/Support/Facades/Foo.php] created successfully
  
php artisan make:facade Foo/Bar --accessor='App\Services\FooBarService'

  INFO  Facade [app/Support/Facades/Foo/Bar.php] created successfully
  
php artisan make:facade Fizz/Buzz --accessor='fizzbuzz' --target='App\Services\FizzBuzzService'

  INFO  Facade [app/Support/Facades/Fizz/Buzz.php] created successfully
bash
php artisan vendor:publish --tag=laradev
php artisan vendor:publish --tag=stubs
php artisan vendor:publish --provider='Determined\LaraDev\LaraDevServiceProvider' --tag=stubs