Skip to content

Commit f5214ff

Browse files
committed
update PHPLint v9.x versions supported
1 parent 61f50d3 commit f5214ff

File tree

3 files changed

+35
-5
lines changed

3 files changed

+35
-5
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Changed
2+
body: update PHPLint v9.x versions supported
3+
time: 2025-04-13T06:31:30.625891272Z

docs/appendix/tools.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!-- MARKDOWN-TABLE:START -->
1010
| Name | Description | <sup>PHP 8.0</sup> | <sup>PHP 8.1</sup> | <sup>PHP 8.2</sup> | <sup>PHP 8.3</sup> | <sup>PHP 8.4</sup> |
1111
| :--- | :---------- | :------ | :------ | :------ | :------ | :------ |
12-
| | Total available: 45 | 24 | 24 | 24 | 26 | 28 |
12+
| | Total available: 46 | 24 | 24 | 24 | 26 | 28 |
1313
| asciinema | [Terminal session recorder](https://github.com/asciinema/asciinema) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
1414
| box v4 | [Fast, zero config application bundler with PHARs](https://github.com/box-project/box) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x274C; |
1515
| box-manifest v4 | [Create a manifest to a PHP Archive (PHAR) for the BOX project](https://github.com/llaville/box-manifest) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
@@ -39,7 +39,8 @@
3939
| phpdd | [Finds usage of deprecated features](https://github.com/wapmorgan/PhpDeprecationDetector) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
4040
| phpdoc 3.3 | [Documentation Generator for PHP 7](https://github.com/phpdocumentor/phpdocumentor) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
4141
| phpdoc 3.7 | [Documentation Generator for PHP 8](https://github.com/phpdocumentor/phpdocumentor) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
42-
| phplint v9.5 | [Checks PHP file syntax (9.5.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
42+
| phplint v9.5 | [Checks PHP file syntax (9.5.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
43+
| phplint v9.6 | [Checks PHP file syntax (9.6.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
4344
| phpmnd v3 | [PHP Magic Number Detector (3.x version)](https://github.com/povils/phpmnd) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
4445
| phpstan | [PHP Static Analysis Tool](https://github.com/phpstan/phpstan) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
4546
| phpunit 10 | [The PHP Unit Testing framework (10.x version)](https://github.com/sebastianbergmann/phpunit) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |

resources/tools/phplint.json

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,40 @@
11
{
22
"tools": [
3+
{
4+
"name": "phplint v9.6",
5+
"summary": "Checks PHP file syntax (9.6.x version)",
6+
"website": "https://github.com/overtrue/phplint",
7+
"command": {
8+
"git-install": {
9+
"repository": "https://github.com/overtrue/phplint.git",
10+
"target-dir": "/usr/local/src/phplint",
11+
"version": "9.6"
12+
},
13+
"composer-install": {},
14+
"shell": {
15+
"cmd": "ln -sf /usr/local/src/phplint/bin/phplint %target-dir%/phplint"
16+
}
17+
},
18+
"tags": [
19+
"phplint-9",
20+
"exclude-php:5.6",
21+
"exclude-php:7.0",
22+
"exclude-php:7.1",
23+
"exclude-php:7.2",
24+
"exclude-php:7.3",
25+
"exclude-php:7.4",
26+
"exclude-php:8.0"
27+
]
28+
},
329
{
430
"name": "phplint v9.5",
531
"summary": "Checks PHP file syntax (9.5.x version)",
632
"website": "https://github.com/overtrue/phplint",
733
"command": {
834
"git-install": {
935
"repository": "https://github.com/overtrue/phplint.git",
10-
"target-dir": "/usr/local/src/phplint"
36+
"target-dir": "/usr/local/src/phplint",
37+
"version": "9.5"
1138
},
1239
"composer-install": {},
1340
"shell": {
@@ -22,8 +49,7 @@
2249
"exclude-php:7.2",
2350
"exclude-php:7.3",
2451
"exclude-php:7.4",
25-
"exclude-php:8.0",
26-
"exclude-php:8.1"
52+
"exclude-php:8.0"
2753
]
2854
}
2955
]

0 commit comments

Comments
 (0)