https://github.com/defstudio/laravel-dev-tools
https://github.com/defstudio/laravel-dev-tools
laravel php
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/defstudio/laravel-dev-tools
- Owner: defstudio
- License: mit
- Created: 2021-05-25T07:03:03.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-06-18T13:46:46.000Z (almost 2 years ago)
- Last Synced: 2025-10-29T22:35:40.766Z (7 months ago)
- Topics: laravel, php
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
]
```