View build.yml
name: Build | |
on: [ pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
mysql: |
View .php_cs.laravel.php
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', | |
'operators' => ['=>' => null] |
View .shiftrc
; Within this file you may set preferences for Shift. | |
; These may be used to customize the behavior of the | |
; Shift bot by disabling or guiding the automation. | |
; Section to set options for PHP Shifts. | |
[php] | |
; The path to the .php_cs config file included | |
; in your project for Shift to apply your |