An open API service indexing awesome lists of open source software.

https://github.com/defstudio/laravel-dev-tools


https://github.com/defstudio/laravel-dev-tools

laravel php

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

          

# laravel-dev-tools

Add the following scripts to composer.json

```
"php-cs-fixer": "php-cs-fixer fix -v --config=./.php-cs-fixer.php",
"lint": "@php-cs-fixer",
"test:lint": "@php-cs-fixer --dry-run",
"test:types": "php ./vendor/bin/phpstan analyse --ansi --memory-limit=0",
"test": "php ./vendor/bin/pest --colors=always",
"test:all": [
"@test:lint",
"@test:types",
"@test"
]
```