Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add signature for box #437

Merged
merged 2 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ It has been extracted as a separate project to make maintenance easier and enabl
| :--- | :---------- | :------ | :------ | :------
| analyze | [Visualizes metrics and source code](https://github.com/Qafoo/QualityAnalyzer) | ✅ | ❌ | ❌ |
| behat | [Helps to test business expectations](http://behat.org/) | ✅ | ✅ | ✅ |
| box | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ✅ | ✅ | ✅ |
| box | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ❌ | ❌ | ✅ |
| box-3 | [Fast, zero config application bundler with PHARs](https://github.com/humbug/box) | ✅ | ✅ | ✅ |
| churn | [Discovers good candidates for refactoring](https://github.com/bmitch/churn-php) | ✅ | ✅ | ✅ |
| codeception | [Codeception is a BDD-styled PHP testing framework](https://codeception.com/) | ✅ | ✅ | ✅ |
| composer | [Dependency Manager for PHP](https://getcomposer.org/) | ✅ | ✅ | ✅ |
Expand Down
17 changes: 16 additions & 1 deletion resources/pre-installation.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,25 @@
"command": {
"phive-install": {
"alias": "humbug/box",
"bin": "%target-dir%/box"
"bin": "%target-dir%/box",
"sig": "2DF45277AEF09A2F"
}
},
"test": "box list",
"tags": ["pre-installation", "exclude-php:7.4", "exclude-php:8.0"]
},
{
"name": "box-3",
"summary": "Fast, zero config application bundler with PHARs",
"website": "https://github.com/humbug/box",
"command": {
"phive-install": {
"alias": "humbug/box:^3.16",
"bin": "%target-dir%/box-3",
"sig": "2DF45277AEF09A2F"
}
},
"test": "box-3 list",
"tags": ["pre-installation"]
}
]
Expand Down