https://github.com/defstudio/laravel-dev-dependencies
https://github.com/defstudio/laravel-dev-dependencies
laravel php
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/defstudio/laravel-dev-dependencies
- Owner: defstudio
- Created: 2021-09-17T08:20:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-16T13:38:05.000Z (about 3 years ago)
- Last Synced: 2025-06-27T23:43:08.417Z (11 months ago)
- Topics: laravel, php
- Language: PHP
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# laravel-tools
## Installation
You can install this package via Composer:
`composer require --dev defstudio/laravel-dev-dependencies`
## Setup
### Publishing Assets
### Composer Scripts
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=-1",
"test:mutation": "./vendor/bin/infection --test-framework=pest --show-mutations",
"test": "php ./vendor/bin/pest --colors=always --parallel",
"x-ray": "./vendor/bin/x-ray .",
"update:snapshots": "php ./vendor/bin/pest --colors=always -d --update-snapshots",
"test:all": [
"@test:lint",
"@test:types",
"@test",
"@x-ray".
]
```