This repository has been archived by the owner on Mar 15, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
97 lines (97 loc) · 3.12 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
95
96
97
{
"name": "ghostwriter/composer-lock",
"description": "Bumps `./composer.lock` file, optionally lock the minimum supported PHP version",
"license": "BSD-3-Clause",
"type": "composer-plugin",
"keywords": [
"ghostwriter",
"composer",
"lock",
"composer-plugin"
],
"authors": [
{
"name": "Nathanael Esayeas",
"email": "nathanael.esayeas@protonmail.com",
"homepage": "https://github.com/sponsors/ghostwriter",
"role": "Developer"
}
],
"homepage": "https://github.com/ghostwriter/composer-lock",
"support": {
"issues": "https://github.com/ghostwriter/composer-lock/issues",
"forum": "https://github.com/ghostwriter/composer-lock/discussions",
"source": "https://github.com/ghostwriter/composer-lock",
"docs": "https://github.com/ghostwriter/composer-lock",
"rss": "https://github.com/ghostwriter/composer-lock/releases.atom"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ghostwriter"
}
],
"require": {
"php": "~7.4.0 || ~8.0.0 || ~8.1.0",
"ext-json": "*",
"composer-plugin-api": ">=2.0,<2.4",
"composer-runtime-api": ">=2.0,<2.4"
},
"require-dev": {
"composer/composer": ">=2.0,<2.4",
"infection/infection": "^0.26.6",
"laminas/laminas-coding-standard": "^2.3.0",
"phpbench/phpbench": "^1.2.5",
"phpunit/phpunit": "^9.5.20",
"psalm/plugin-phpunit": "^0.16.1",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^4.22.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ghostwriter\\ComposerLock\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ghostwriter\\ComposerLock\\Tests\\": "tests/",
"Ghostwriter\\ComposerLock\\Tests\\Benchmark\\": "tests/Benchmark/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
},
"classmap-authoritative": true,
"discard-changes": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"prepend-autoloader": true,
"process-timeout": 5000,
"sort-packages": true,
"platform": {
"php": "7.4.999"
}
},
"extra": {
"class": "Ghostwriter\\ComposerLock\\Lock",
"plugin-modifies-downloads": true
},
"scripts": {
"check": [
"@cs-fix",
"@cs-check",
"@test",
"@psalm"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"psalm": "psalm --stats --taint-analysis --no-cache --find-dead-code --find-unused-code --find-unused-psalm-suppress --update-baseline",
"psalm-fix-all": "psalm --alter --issues=all",
"test": "phpunit --color --testdox --stop-on-failure",
"test-coverage": "phpunit --color --coverage-clover clover.xml"
}
}