Skip to content

Commit 34c5172

Browse files
Merge pull request #250 from TheDragonCode/5.x
Bump Laravel Zero Framework
2 parents c25fe32 + 700f7ba commit 34c5172

3 files changed

Lines changed: 725 additions & 667 deletions

File tree

app/Commands/DefaultCommand.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,27 @@ protected function configure(): void
8787
'Fix code style errors but exit with status 1 if there were any changes made'
8888
),
8989

90+
new InputOption(
91+
'output-to-file',
92+
'',
93+
InputOption::VALUE_REQUIRED,
94+
'Output the test results to a file at this path'
95+
),
96+
9097
new InputOption(
9198
'format',
9299
'',
93100
InputOption::VALUE_REQUIRED,
94101
'The output format that should be used'
95102
),
103+
104+
new InputOption(
105+
'parallel',
106+
'p',
107+
InputOption::VALUE_REQUIRED,
108+
'Runs the linter in parallel (Experimental)',
109+
true
110+
),
96111
]
97112
);
98113
}

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
"dragon-code/pretty-array": "^4.2",
5555
"dragon-code/support": "^6.16.0",
5656
"friendsofphp/php-cs-fixer": "^3.72.0",
57-
"illuminate/view": "^11.44.2",
57+
"illuminate/view": "^12.20",
5858
"kubawerlos/php-cs-fixer-custom-fixers": "^3.23.0",
59-
"laravel-zero/framework": "^11.36.1",
59+
"laravel-zero/framework": "^12.0",
6060
"mockery/mockery": "^1.6.12",
6161
"nunomaduro/termwind": "^2.3",
6262
"pedrotroller/php-cs-custom-fixer": "^2.33.2",
@@ -93,5 +93,8 @@
9393
},
9494
"preferred-install": "dist",
9595
"sort-packages": true
96+
},
97+
"scripts": {
98+
"test": "vendor/bin/pest --parallel"
9699
}
97100
}

0 commit comments

Comments
 (0)