-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
143 lines (143 loc) · 4.34 KB
/
composer.json
File metadata and controls
143 lines (143 loc) · 4.34 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "traviscarden/behat-table-comparison",
"description": "Provides an equality assertion for comparing Behat TableNode tables.",
"license": "MIT",
"type": "library",
"keywords": [
"Behat",
"Gherkin",
"dev",
"testing"
],
"authors": [
{
"name": "Travis Carden",
"email": "travis.carden@gmail.com"
}
],
"require": {
"php": "^8.3",
"behat/gherkin": "^4.11"
},
"require-dev": {
"behat/behat": "^3.16",
"dealerdirect/phpcodesniffer-composer-installer": "^1.1",
"ergebnis/composer-normalize": "^2.50",
"phpro/grumphp-shim": "^2.9",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.0",
"rector/rector": "^2.1",
"slevomat/coding-standard": "^8.13",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TravisCarden\\BehatTableComparison\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TravisCarden\\BehatTableComparison\\Examples\\Bootstrap\\": "examples/bootstrap/",
"TravisCarden\\BehatTableComparison\\Tests\\Behat\\Bootstrap\\": "tests/behat/bootstrap/",
"TravisCarden\\BehatTableComparison\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"sort-packages": true
},
"extra": {
"grumphp": {
"disable-plugin": true
}
},
"scripts": {
"check:all": "grumphp run --testsuite=all",
"check:behat": "grumphp run --testsuite=behat",
"check:fast": "grumphp run --testsuite=fast",
"check:phpcs": "grumphp run --testsuite=phpcs",
"check:phpstan": "grumphp run --testsuite=phpstan",
"check:phpunit": "grumphp run --testsuite=phpunit",
"check:rector": "grumphp run --testsuite=rector",
"check:static": "grumphp run --testsuite=static",
"check:test": "grumphp run --testsuite=test",
"docker:build": "docker compose build",
"docker:down": "docker compose down",
"fix:all": [
"@fix:rector",
"@fix:phpcbf"
],
"fix:phpcbf": "phpcbf",
"fix:rector": "rector"
},
"scripts-descriptions": {
"check:all": "Runs static checks locally and tests across all supported PHP versions",
"check:behat": "Runs Behat integration tests and executable examples",
"check:fast": "Runs all tests and static analysis tools",
"check:phpcs": "Checks code for standards compliance",
"check:phpstan": "Analyzes code to find bugs",
"check:phpunit": "Runs automated tests",
"check:rector": "Validates that Rector would make no further changes",
"check:static": "Runs all static analysis tools",
"check:test": "Runs all tests",
"docker:build": "Builds the Docker images for all supported PHP versions",
"docker:down": "Stops and removes Docker containers and networks (images and volumes are preserved; no rebuild needed to resume)",
"fix:all": "Runs all code fixers",
"fix:phpcbf": "Automatically fixes standards violations where possible",
"fix:rector": "Applies Rector refactorings"
},
"scripts-aliases": {
"check:all": [
"all"
],
"check:behat": [
"behat"
],
"check:fast": [
"fast"
],
"check:phpcs": [
"phpcs",
"cs"
],
"check:phpstan": [
"phpstan",
"stan",
"analyze"
],
"check:phpunit": [
"phpunit"
],
"check:rector": [
"check-rector"
],
"check:static": [
"static"
],
"check:test": [
"test"
],
"docker:build": [
"build"
],
"docker:down": [
"down"
],
"fix:all": [
"fix-all",
"fix"
],
"fix:phpcbf": [
"phpcbf",
"cbf"
],
"fix:rector": [
"rector"
]
}
}