|
1 | 1 | {
|
2 | 2 | "name": "wayofdev/cs-fixer-config",
|
3 | 3 | "description": "Package adds custom rule-sets to php-cs-fixer",
|
4 |
| - "type": "library", |
5 | 4 | "license": "MIT",
|
6 |
| - "homepage": "https://wayof.dev", |
7 |
| - "support": { |
8 |
| - "issues": "https://github.com/wayofdev/php-cs-fixer-config/issues", |
9 |
| - "source": "https://github.com/wayofdev/php-cs-fixer-config" |
10 |
| - }, |
| 5 | + "type": "library", |
11 | 6 | "authors": [
|
12 | 7 | {
|
13 | 8 | "name": "Andrij Orlenko",
|
14 | 9 | "email": "the@wayof.dev"
|
15 | 10 | }
|
16 | 11 | ],
|
| 12 | + "homepage": "https://wayof.dev", |
| 13 | + "support": { |
| 14 | + "issues": "https://github.com/wayofdev/php-cs-fixer-config/issues", |
| 15 | + "source": "https://github.com/wayofdev/php-cs-fixer-config" |
| 16 | + }, |
17 | 17 | "require": {
|
18 | 18 | "php": "^8.1",
|
19 | 19 | "friendsofphp/php-cs-fixer": "^3.57"
|
20 | 20 | },
|
21 | 21 | "require-dev": {
|
| 22 | + "ergebnis/phpunit-slow-test-detector": "^2.14", |
| 23 | + "pestphp/pest": "^2.34", |
22 | 24 | "phpstan/extension-installer": "^1.3",
|
23 | 25 | "phpstan/phpstan": "^1.11",
|
24 | 26 | "phpstan/phpstan-deprecation-rules": "^1.2",
|
25 | 27 | "phpstan/phpstan-phpunit": "^1.4",
|
26 | 28 | "phpstan/phpstan-strict-rules": "^1.6",
|
27 |
| - "phpunit/phpunit": "^10.5", |
28 |
| - "pestphp/pest": "^2.34", |
29 |
| - "ergebnis/phpunit-slow-test-detector": "^2.14" |
| 29 | + "phpunit/phpunit": "^10.5" |
30 | 30 | },
|
31 | 31 | "autoload": {
|
32 | 32 | "psr-4": {
|
|
38 | 38 | "WayOfDev\\PhpCsFixer\\Config\\Tests\\": "tests/"
|
39 | 39 | }
|
40 | 40 | },
|
| 41 | + "config": { |
| 42 | + "allow-plugins": { |
| 43 | + "ergebnis/composer-normalize": true, |
| 44 | + "pestphp/pest-plugin": true, |
| 45 | + "phpstan/extension-installer": true |
| 46 | + }, |
| 47 | + "audit": { |
| 48 | + "abandoned": "report" |
| 49 | + }, |
| 50 | + "platform": { |
| 51 | + "php": "8.1.27" |
| 52 | + }, |
| 53 | + "sort-packages": true |
| 54 | + }, |
| 55 | + "extra": { |
| 56 | + "composer-normalize": { |
| 57 | + "indent-size": 4, |
| 58 | + "indent-style": "space" |
| 59 | + } |
| 60 | + }, |
41 | 61 | "scripts": {
|
42 | 62 | "cs:diff": "php vendor/bin/php-cs-fixer fix --dry-run -v --diff",
|
43 | 63 | "cs:fix": "php vendor/bin/php-cs-fixer fix -v",
|
|
53 | 73 | "stan:ci": "php vendor/bin/phpstan analyse --memory-limit=2G --error-format=github",
|
54 | 74 | "test": "XDEBUG_MODE=coverage php vendor/bin/pest",
|
55 | 75 | "test:cc": "XDEBUG_MODE=coverage php vendor/bin/pest --coverage --coverage-clover=.build/phpunit/logs/clover.xml"
|
56 |
| - }, |
57 |
| - "config": { |
58 |
| - "sort-packages": true, |
59 |
| - "allow-plugins": { |
60 |
| - "ergebnis/composer-normalize": true, |
61 |
| - "phpstan/extension-installer": true, |
62 |
| - "pestphp/pest-plugin": true |
63 |
| - } |
64 |
| - }, |
65 |
| - "extra": { |
66 |
| - "composer-normalize": { |
67 |
| - "indent-size": 4, |
68 |
| - "indent-style": "space" |
69 |
| - } |
70 | 76 | }
|
71 | 77 | }
|
0 commit comments