2017 © Pedro Peláez
 

library laravel-make-file-permissions

Automatically apply unix file permissions after the 'artisan make:' command

image

romanzipp/laravel-make-file-permissions

Automatically apply unix file permissions after the 'artisan make:' command

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Make File Permissions

Latest Stable Version Total Downloads License, (*1)

This package automatically applies unix file permissions after the artisan make: command., (*2)

Installation

composer require --dev romanzipp/laravel-make-file-permissions

If you use Laravel 5.5+ you are already done, otherwise continue., (*3)

romanzipp\MakeFilePermissions\Providers\MakeFilePermissionsProvider::class,

Add Service Provider to your app.php configuration file., (*4)

Configuration

Copy configuration to config folder:, (*5)

$ php artisan vendor:publish --provider="romanzipp\MakeFilePermissions\Providers\MakeFilePermissionsProvider"

Config File

return [

    /**
     * Enable the permission service
     */
    'enabled' => env('MAKE_PERMISSIONS_ENABLED', true),

    /**
     * Apply the following permission
     */
    'permission' => env('MAKE_PERMISSIONS', '600'),

    /**
     * Ignore commands
     */
    'ignore' => [],
];

The Versions

23/06 2018

dev-master

9999999-dev

Automatically apply unix file permissions after the 'artisan make:' command

  Sources   Download

MIT

The Requires

 

20/06 2018

0.0.1

0.0.1.0

Automatically apply unix file permissions after the 'artisan make:' command

  Sources   Download

MIT

The Requires