Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit 6e7975e

Browse files
committed
wip
1 parent a662d23 commit 6e7975e

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/vendor
22
composer.lock
33
phpunit.xml
4+
.php_cs.cache

.php_cs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
$finder = Symfony\Component\Finder\Finder::create()
4+
->notPath('vendor')
5+
->in(__DIR__)
6+
->name('*.php')
7+
->notName('*.blade.php')
8+
->ignoreDotFiles(true)
9+
->ignoreVCS(true);
10+
11+
return PhpCsFixer\Config::create()
12+
->setRules([
13+
'@PSR2' => true,
14+
'array_syntax' => ['syntax' => 'short'],
15+
'blank_line_after_namespace' => true,
16+
'blank_line_after_opening_tag' => true,
17+
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
18+
'no_unused_imports' => true,
19+
'not_operator_with_successor_space' => true,
20+
])
21+
->setFinder($finder);

.phpunit.result.cache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:37:"PHPUnit\Runner\DefaultTestResultCache":44:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:0:{}}}

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: php
22

33
php:
4-
- 7.1
54
- 7.2
65
- 7.3
6+
- 7.4
77

88
env:
99
matrix:

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.1",
15-
"illuminate/database": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0",
16-
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|^6.0"
14+
"php": "^7.2.5",
15+
"illuminate/database": "^6.0|^7.0",
16+
"illuminate/support": "^6.0|^7.0"
1717
},
1818
"require-dev": {
19-
"phpunit/phpunit": "^7.0|^8.0",
20-
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0|^4.0"
19+
"phpunit/phpunit": "^7.0|^8.0|^9.0",
20+
"orchestra/testbench": "^4.0|^5.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)