Skip to content

Commit

Permalink
update PHP Magic Number Detector reference
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Nov 24, 2024
1 parent 8987a04 commit 3a37eb2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/appendix/tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<!-- MARKDOWN-TABLE:START -->
| 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> |
| :--- | :---------- | :------ | :------ | :------ | :------ | :------ |
| | Total available: 57 | 33 | 34 | 36 | 39 | 43 |
| | Total available: 58 | 33 | 34 | 36 | 39 | 43 |
| asciinema | [Terminal session recorder](https://github.com/asciinema/asciinema) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| box v4 | [Fast, zero config application bundler with PHARs](https://github.com/box-project/box) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x274C; |
| 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; |
Expand Down Expand Up @@ -49,7 +49,8 @@
| phpdoc 3.3 | [Documentation Generator for PHP 7](https://github.com/phpdocumentor/phpdocumentor) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpdoc 3.5 | [Documentation Generator for PHP 8](https://github.com/phpdocumentor/phpdocumentor) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phplint v9.5 | [Checks PHP file syntax (9.5.x version)](https://github.com/overtrue/phplint) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
| phpmnd | [PHP Magic Number Detector](https://github.com/povils/phpmnd) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpmnd v2 | [PHP Magic Number Detector (2.x version)](https://github.com/povils/phpmnd) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpmnd v3 | [PHP Magic Number Detector (3.x version)](https://github.com/povils/phpmnd) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpstan | [PHP Static Analysis Tool](https://github.com/phpstan/phpstan) | &#x2705; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpunit 10 | [The PHP Unit Testing framework (10.x version)](https://github.com/sebastianbergmann/phpunit) | &#x274C; | &#x2705; | &#x2705; | &#x2705; | &#x2705; |
| phpunit 11 | [The PHP Unit Testing framework (11.x version)](https://github.com/sebastianbergmann/phpunit) | &#x274C; | &#x274C; | &#x2705; | &#x2705; | &#x2705; |
Expand Down
31 changes: 28 additions & 3 deletions resources/tools/phpmnd.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,46 @@
{
"tools": [
{
"name": "phpmnd",
"summary": "PHP Magic Number Detector",
"name": "phpmnd v3",
"summary": "PHP Magic Number Detector (3.x version)",
"website": "https://github.com/povils/phpmnd",
"command": {
"git-install": {
"repository": "https://github.com/povils/phpmnd.git",
"target-dir": "/usr/local/src/phpmnd",
"version": "v2.4.0"
"version": "v3.5.0"
},
"composer-install": {},
"shell": {
"cmd": "ln -sf /usr/local/src/phpmnd/bin/phpmnd %target-dir%/phpmnd"
}
},
"tags": [
"phpmnd-3",
"exclude-php:5.6",
"exclude-php:7.0",
"exclude-php:7.1",
"exclude-php:7.2",
"exclude-php:7.3"
]
},
{
"name": "phpmnd v2",
"summary": "PHP Magic Number Detector (2.x version)",
"website": "https://github.com/povils/phpmnd",
"command": {
"git-install": {
"repository": "https://github.com/povils/phpmnd.git",
"target-dir": "/usr/local/src/phpmnd",
"version": "v2.5.0"
},
"composer-install": {},
"shell": {
"cmd": "ln -sf /usr/local/src/phpmnd/bin/phpmnd %target-dir%/phpmnd"
}
},
"tags": [
"phpmnd-2",
"exclude-php:5.6",
"exclude-php:7.0"
]
Expand Down

0 comments on commit 3a37eb2

Please sign in to comment.