Skip to content

Commit e20b3ba

Browse files
author
Gianluca Arbezzano
committed
Merge pull request #52 from gianarb/feature/composer-global
Now composer support an entry point to install in globally
2 parents f150c52 + 657d10d commit e20b3ba

File tree

5 files changed

+87
-79
lines changed

5 files changed

+87
-79
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.test_fs
22
build/
33
vendor/
4-
phpctags
4+
./phpctags

bin/phpctags

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env php
2+
3+
<?php
4+
include(__DIR__."/../bootstrap.php");

buildPHAR.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ function ($current) {
3434
'build/*',
3535
'tests/*',
3636
'Makefile',
37+
'bin/phpctags',
3738
'phpctags',
3839
'phpctags.sh',
3940
'buildPHAR.php',

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
"tests\\PHPCTags\\": "tests/"
1919
}
2020
},
21-
"bin": ["phpctags"]
21+
"bin": ["bin/phpctags"]
2222
}

0 commit comments

Comments
 (0)