-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 1.75 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 1.75 KB
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
{
"name": "typisttech/php-matrix",
"description": "List PHP versions that satisfy the required PHP constraint in composer.json.",
"license": "MIT",
"type": "project",
"keywords": [
"cli",
"composer",
"php",
"version"
],
"authors": [
{
"name": "Typist Tech",
"homepage": "https://typist.tech"
},
{
"name": "Tang Rufus",
"email": "tangrufus@gmail.com",
"homepage": "https://tangrufus.com",
"role": "Developer"
}
],
"homepage": "https://github.com/typisttech/php-matrix",
"support": {
"issues": "https://github.com/typisttech/php-matrix/issues",
"source": "https://github.com/typisttech/php-matrix",
"security": "https://github.com/typisttech/php-matrix/security"
},
"require": {
"php": "^8.5",
"composer-runtime-api": "^2.2",
"composer/semver": "^3.4",
"guzzlehttp/guzzle": "^7.10",
"symfony/console": "^7.3",
"symfony/polyfill-iconv": "^1.33"
},
"require-dev": {
"mockery/mockery": "^1.6",
"pestphp/pest": "^4.1",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0"
},
"autoload": {
"psr-4": {
"TypistTech\\PhpMatrix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"bin/php-matrix"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"lint": [
"box validate",
"@composer normalize --dry-run",
"phpstan analyse"
],
"pest": "pest",
"pest:unit": "pest --group=unit"
}
}