Skip to content

Commit 9217abf

Browse files
committed
Merge pull request #52 from 1ma/boxify
support for building a .phar command line utility from project sources
2 parents c1e1d55 + d2ec9e1 commit 9217abf

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
build/
22
vendor/
3+
box.phar
4+
codeclimate-test-reporter.phar
35
composer.lock
46
composer.phar

box.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"alias": "codeclimate-test-reporter.phar",
3+
"chmod": "0755",
4+
"directories": ["src"],
5+
"compactors": [
6+
"Herrera\\Box\\Compactor\\Php"
7+
],
8+
"extract": true,
9+
"files": [
10+
"LICENSE"
11+
],
12+
"finder": [
13+
{
14+
"name": ["*.php", "*.pem"],
15+
"exclude": ["tests"],
16+
"in": ["vendor"]
17+
}
18+
],
19+
"git-version": "package_version",
20+
"main": "composer/bin/test-reporter",
21+
"output": "codeclimate-test-reporter.phar",
22+
"stub": true
23+
}

0 commit comments

Comments
 (0)