add asset handling and colors to configure.php

This commit is contained in:
awcodes
2022-09-01 14:59:18 -04:00
parent 9c767f2e8e
commit 845fc39a73
13 changed files with 602 additions and 131 deletions

View File

@@ -22,11 +22,14 @@
"illuminate/contracts": "^9.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^7.0",
"pestphp/pest": "^1.21",
"pestphp/pest-plugin-laravel": "^1.1",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-parallel": "^0.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
@@ -45,12 +48,21 @@
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest coverage"
"pint": "pint",
"test:pest": "pest --parallel",
"test:phpstan": "phpstan analyse",
"test": [
"@test:pest",
"@test:phpstan"
]
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
@@ -64,4 +76,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}