-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
94 lines (94 loc) · 2.85 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "psr-discovery/discovery",
"description": "Lightweight library that discovers available PSR implementations by searching for a list of well-known classes that implement the relevant interfaces, and returning an instance of the first one that is found.",
"license": "MIT",
"type": "library",
"keywords": [
"psr",
"discovery",
"psr-18",
"psr-17",
"psr-14",
"psr-11",
"psr-6",
"psr-3"
],
"authors": [
{
"name": "Evan Sims",
"email": "hello@evansims.com",
"homepage": "https://evansims.com/"
}
],
"homepage": "https://github.com/psr-discovery/discovery",
"require": {
"php": "^8.1",
"composer/semver": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"mockery/mockery": "^1.5",
"pestphp/pest": "^2.0",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"rector/rector": "^0.15",
"vimeo/psalm": "^5.8",
"wikimedia/composer-merge-plugin": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PsrDiscovery\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PsrDiscovery\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"pestphp/pest-plugin": true,
"wikimedia/composer-merge-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"extra": {
"merge-plugin": {
"ignore-duplicates": false,
"include": [
"composer.local.json"
],
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false,
"recurse": true,
"replace": true
}
},
"scripts": {
"mutate": "@php ./vendor/bin/infection --test-framework=pest --show-mutations",
"pest:coverage": "@php vendor/bin/pest --order-by random --compact --coverage",
"pest": "@php vendor/bin/pest --order-by random --compact",
"phpcs:fix": "@php vendor/bin/php-cs-fixer fix src",
"phpcs": "@php vendor/bin/php-cs-fixer fix src --dry-run --diff",
"phpstan": "@php vendor/bin/phpstan analyze",
"psalm:fix": "@php vendor/bin/psalter --issues=all",
"psalm": "@php vendor/bin/psalm",
"rector:fix": "@php vendor/bin/rector process",
"rector": "@php vendor/bin/rector process --dry-run",
"test": [
"@pest",
"@phpstan",
"@psalm",
"@rector",
"@phpcs"
]
}
}