-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "liveintent/php-cs-fixer",
"description": "LiveIntent code style rules for php-cs-fixer",
"keywords": [
"LiveIntent",
"php-cs-fixer"
],
"homepage": "https://github.com/liveintent/php-cs-fixer",
"require": {
"php": "^8.0|^8.1",
"friendsofphp/php-cs-fixer": "^3.6",
"laravel/framework": "^9.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.20"
},
"autoload": {
"psr-4": {
"LiveIntent\\PhpCsFixer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LiveIntent\\PhpCsFixer\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"psalm": "vendor/bin/psalm",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"minimum-stability": "dev",
"prefer-stable": true
}