+3
-5
composer.json
+3
-5
composer.json
···
45
}
46
},
47
"scripts": {
48
-
"test": "vendor/bin/pest",
49
-
"test-coverage": "vendor/bin/pest --coverage",
50
"format": "vendor/bin/php-cs-fixer fix"
51
},
52
"extra": {
···
62
"minimum-stability": "dev",
63
"prefer-stable": true,
64
"config": {
65
-
"allow-plugins": {
66
-
"pestphp/pest-plugin": false
67
-
}
68
}
69
}
···
45
}
46
},
47
"scripts": {
48
+
"test": "vendor/bin/phpunit",
49
+
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
50
"format": "vendor/bin/php-cs-fixer fix"
51
},
52
"extra": {
···
62
"minimum-stability": "dev",
63
"prefer-stable": true,
64
"config": {
65
+
"sort-packages": true
66
}
67
}