-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from okgreece/develop/1
Develop/1
- Loading branch information
Showing
164 changed files
with
142,958 additions
and
7,288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
APP_ENV=testing | ||
APP_KEY=SomeRandomStringSomeRandomString | ||
|
||
DB_CONNECTION=testing | ||
DB_TEST_USERNAME=root | ||
DB_TEST_PASSWORD= | ||
|
||
CACHE_DRIVER=array | ||
SESSION_DRIVER=array | ||
QUEUE_DRIVER=sync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php | ||
$excluded_folders = [ | ||
'node_modules', | ||
'storage', | ||
'vendor' | ||
]; | ||
$finder = PhpCsFixer\Finder::create() | ||
->exclude($excluded_folders) | ||
->notName('AcceptanceTester.php') | ||
->notName('FunctionalTester.php') | ||
->notName('UnitTester.php') | ||
->in(__DIR__); | ||
; | ||
return PhpCsFixer\Config::create() | ||
->setRules(array( | ||
'@Symfony' => true, | ||
'binary_operator_spaces' => ['align_double_arrow' => true], | ||
'array_syntax' => ['syntax' => 'short'], | ||
'linebreak_after_opening_tag' => true, | ||
'not_operator_with_successor_space' => true, | ||
'ordered_imports' => true, | ||
'phpdoc_order' => true, | ||
)) | ||
->setFinder($finder) | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
preset: laravel | ||
|
||
enabled: | ||
- alpha_ordered_imports | ||
|
||
disabled: | ||
- length_ordered_imports | ||
|
||
finder: | ||
exclude: | ||
- "tests" | ||
- "node_modules" | ||
- "storage" | ||
- "vendor" | ||
not-name: | ||
- "AcceptanceTester.php" | ||
- "FunctionalTester.php" | ||
- "UnitTester.php" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
language: php | ||
|
||
php: | ||
- 7.2 | ||
|
||
before_script: | ||
- cp .env.travis .env | ||
- composer self-update | ||
- composer install --prefer-source --no-interaction --dev | ||
- php artisan key:generate | ||
- php artisan migrate | ||
|
||
before_install: | ||
- mysql -e 'CREATE DATABASE homestead;' | ||
|
||
services: | ||
- mysql | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- mysql-5.7-trusty | ||
packages: | ||
- mysql-server | ||
|
||
dist: trusty | ||
|
||
sudo: required |
Oops, something went wrong.