PHP code example of edstevo / standards

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

    

edstevo / standards example snippets

bash
php artisan boost:install
bash
php artisan boost:update
json
{
  "scripts": {
    "post-update-cmd": [
      "@php artisan boost:update --ansi"
    ]
  }
}

app/
├── Actions/User/
│   ├── CreateUser.php
│   └── UpdateUserProfile.php
├── Jobs/User/
│   └── SendWelcomeEmail.php
├── Data/User/
│   └── CreateUserData.php
├── Factories/Integrations/
│   └── AccountingClientFactory.php
├── Managers/
│   └── AccountingManager.php
├── Specifications/Sales/
│   └── CanDispatchSpecification.php
├── Services/
│   └── UserService.php
└── Http/Controllers/User/
    └── UserController.php
markdown
@
bash
php artisan protocol:info
bash
php artisan vendor:publish --tag="standards-config"