Skip to content

Commit 2cf7737

Browse files
author
Stephen Ball
committed
Added kherge/box support to generate phar file
1 parent 1f0a4e6 commit 2cf7737

File tree

5 files changed

+1063
-106
lines changed

5 files changed

+1063
-106
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea
2-
vendor
2+
vendor
3+
phpdoccheck.phar

box.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"chmod": "0755",
3+
"directories": [
4+
"."
5+
],
6+
"files": [
7+
"LICENSE.md"
8+
],
9+
"finder": [
10+
{
11+
"name": "*.php",
12+
"exclude": ["Tests"],
13+
"in": "vendor"
14+
}
15+
],
16+
"git-version": "package_version",
17+
"main": "phpdoccheck",
18+
"output": "phpdoccheck.phar",
19+
"stub": true
20+
}

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@
3030
"require-dev": {
3131
"phpmd/phpmd": "~2.0",
3232
"squizlabs/php_codesniffer": "~1.5",
33-
"phploc/phploc": "~2.0"
33+
"phploc/phploc": "~2.0",
34+
"kherge/box": "~2.0"
3435
},
3536

3637
"bin": [

0 commit comments

Comments
 (0)