This repository was archived by the owner on Sep 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +29
-6
lines changed
Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 11/vendor
22composer.lock
33phpunit.xml
4+ .php_cs.cache
Original file line number Diff line number Diff line change 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 );
Original file line number Diff line number Diff line change 1+ C:37:"PHPUnit\Runner\DefaultTestResultCache":44:{a:2:{s:7:"defects";a:0:{}s:5:"times";a:0:{}}}
Original file line number Diff line number Diff line change 11language : php
22
33php :
4- - 7.1
54 - 7.2
65 - 7.3
6+ - 7.4
77
88env :
99 matrix :
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments