File tree Expand file tree Collapse file tree 4 files changed +39
-7
lines changed Expand file tree Collapse file tree 4 files changed +39
-7
lines changed Original file line number Diff line number Diff line change 1616 }
1717 ],
1818 "require" : {
19- "php" : " ^8.1 " ,
20- "illuminate/contracts" : " ^10 .0|^11 .0" ,
19+ "php" : " ^8.3 " ,
20+ "illuminate/contracts" : " ^11 .0|^12 .0" ,
2121 "spatie/laravel-package-tools" : " ^1.9.2"
2222 },
2323 "require-dev" : {
24- "codinglabsau/php-styles" : " dev-main" ,
25- "nunomaduro/collision" : " ^7.0" ,
26- "orchestra/testbench" : " ^8.0" ,
27- "phpunit/phpunit" : " ^10.0" ,
24+ "laravel/pint" : " ^1.24" ,
25+ "orchestra/testbench" : " ^9.0|^10" ,
26+ "pestphp/pest" : " ^2.0" ,
2827 "spatie/laravel-ray" : " ^1.26"
2928 },
3029 "autoload" : {
4241 "test" : " vendor/bin/phpunit"
4342 },
4443 "config" : {
45- "sort-packages" : true
44+ "sort-packages" : true ,
45+ "allow-plugins" : {
46+ "pestphp/pest-plugin" : true
47+ }
4648 },
4749 "extra" : {
4850 "laravel" : {
Original file line number Diff line number Diff line change 1+ {
2+ "preset" : " laravel" ,
3+ "rules" : {
4+ "concat_space" : {
5+ "spacing" : " one"
6+ },
7+ "new_with_parentheses" : {
8+ "named_class" : true ,
9+ "anonymous_class" : true
10+ },
11+ "ordered_imports" : {
12+ "imports_order" : [
13+ " const" ,
14+ " class" ,
15+ " function"
16+ ],
17+ "sort_algorithm" : " length"
18+ }
19+ }
20+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ it ('can test ' , function () {
4+ expect (true )->toBeTrue ();
5+ });
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ use Codinglabs \Skeleton \Tests \TestCase ;
4+
5+ uses (TestCase::class)->in (__DIR__ );
You can’t perform that action at this time.
0 commit comments