File tree 3 files changed +15
-9
lines changed
3 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 26
26
"require" : {
27
27
"php" : " ^8.0" ,
28
28
"ext-tokenizer" : " *" ,
29
- "nette/finder" : " ^2.5" ,
29
+ "nette/finder" : " ^2.5||^3.0 " ,
30
30
"nette/php-generator" : " ^4.0.1" ,
31
+ "nette/utils" : " ^3.0||^4.0" ,
31
32
"symfony/console" : " ^6.0" ,
32
33
"symfony/filesystem" : " ^6.0"
33
34
},
34
35
"require-dev" : {
35
36
"nette/tester" : " ^2.0.0" ,
37
+ "nikic/php-parser" : " ^4.10" ,
36
38
"phpstan/phpstan" : " ^1.0" ,
37
39
"php-parallel-lint/php-console-color" : " ^1.0" ,
38
40
"php-parallel-lint/php-parallel-lint" : " ^1.2" ,
39
- "tracy/tracy" : " ^2.7.5" ,
40
- "nikic/php-parser" : " ^4.10"
41
+ "tracy/tracy" : " ^2.7.5"
41
42
},
42
43
"suggest" : {
43
- "tracy/tracy " : " For more detailed error messages ." ,
44
- "nikic/php-parser " : " To be able to use Preserve attribute ."
44
+ "nikic/php-parser " : " To be able to use Preserve attribute ." ,
45
+ "tracy/tracy " : " For more detailed error messages ."
45
46
},
46
47
"bin" : [
47
48
" bin/scaffolder"
48
49
],
50
+ "config" : {
51
+ "sort-packages" : true
52
+ },
49
53
"autoload" : {
50
54
"psr-4" : {
51
55
"Grifart\\ ClassScaffolder\\ " : " src"
Original file line number Diff line number Diff line change 8
8
9
9
final class ModifiedClass
10
10
{
11
- public function __construct (private int $ field )
12
- {
11
+ public function __construct (
12
+ private int $ field ,
13
+ ) {
13
14
}
14
15
}
Original file line number Diff line number Diff line change 8
8
9
9
final class UnmodifiedClass
10
10
{
11
- public function __construct (private string $ field )
12
- {
11
+ public function __construct (
12
+ private string $ field ,
13
+ ) {
13
14
}
14
15
}
You can’t perform that action at this time.
0 commit comments