-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.98 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
{
"name": "typisttech/php-matrix",
"description": "List PHP versions that satisfy the given constraint.",
"license": "MIT",
"type": "project",
"keywords": [
"ci",
"cli",
"github-actions"
],
"authors": [
{
"name": "Typist Tech",
"homepage": "https://typist.tech"
},
{
"name": "Tang Rufus",
"email": "[email protected]",
"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"
},
"require": {
"php": "^8.4",
"composer-runtime-api": "^2.2",
"composer/semver": "^3.4.3",
"guzzlehttp/guzzle": "^7.9.2",
"symfony/console": "^7.2.1"
},
"require-dev": {
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.7.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"TypistTech\\PhpMatrix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"bin": [
"bin/php-matrix"
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"scripts": {
"data:update": [
"curl 'https://www.php.net/releases/index.php?json&max=1000&version=5' | jq . > ./tests/data/releases-5.json",
"curl 'https://www.php.net/releases/index.php?json&max=1000&version=7' | jq . > ./tests/data/releases-7.json",
"curl 'https://www.php.net/releases/index.php?json&max=1000&version=8' | jq . > ./tests/data/releases-8.json",
"@php ./bin/update-all-versions",
"XDEBUG_MODE=off pest --update-snapshots"
],
"pest": "pest",
"pest:e2e": "XDEBUG_MODE=off pest --group=e2e",
"pest:feature": "pest --group=feature",
"pest:unit": "pest --group=unit",
"test": [
"@composer normalize --dry-run",
"pint --test",
"XDEBUG_MODE=off pest"
]
}
}