update with suggestions from beberlei
authorMichael Wallner <mike@php.net>
Wed, 4 Mar 2015 17:20:34 +0000 (18:20 +0100)
committerMichael Wallner <mike@php.net>
Wed, 4 Mar 2015 17:20:34 +0000 (18:20 +0100)
.gitignore
README.md
bin/.gitkeep [deleted file]
bin/pharext [new file with mode: 0755]
composer.json

index 7a63b84cde43a9c0275aeac51eb73fccc0739f08..623b4511dffc01cde730162f802cacfda51028ca 100644 (file)
@@ -1,9 +1,9 @@
 .buildpath
 .project
 .settings/
-bin/pharext
+nbproject/
 *~
 *.tmp
 *.phar
 *.phar.gz
-*.phar.bz2
+*.phar.bz2
\ No newline at end of file
index feb30a07809655f4110b36a8034bdbb5d81619b3..017da751056e114f3f44f2c165a6affbe468f425 100644 (file)
--- a/README.md
+++ b/README.md
@@ -59,7 +59,7 @@ A network connection is not needed.
 
 ## Installation for extension maintainers
 
-       $ composer require m6w6/pharext
+       $ composer require --dev m6w6/pharext
 
 ### Prerequisites:
 
@@ -68,7 +68,7 @@ A network connection is not needed.
 
 ## Usage
 
-       $ ./bin/pharext --pecl --source ../pecl_http.git
+       $ ./vendor/bin/pharext --pecl --source ../pecl_http.git
 
 Yields:
 
@@ -79,7 +79,7 @@ Note that the PECL source can infer package name and release version from the pa
 
 Another example using `git ls-files`:
 
-       $ ./bin/pharext -v -g -s ../raphf.git --name raphf --release 1.0.5
+       $ ./vendor/bin/pharext -v -g -s ../raphf.git --name raphf --release 1.0.5
 
 Yields:
 
@@ -104,7 +104,7 @@ Yields:
 
 Command help:
 
-       $ ./bin/pharext --help
+       $ ./vendor/bin/pharext --help
 
 Yields:
 
@@ -122,3 +122,6 @@ Yields:
            -n|--name <arg>              Extension name (REQUIRED)
            -r|--release <arg>           Extension release version (REQUIRED)
 
+## Rebuilding
+
+       $ make -C vendor/m6w6/pharext
diff --git a/bin/.gitkeep b/bin/.gitkeep
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/bin/pharext b/bin/pharext
new file mode 100755 (executable)
index 0000000..531e251
Binary files /dev/null and b/bin/pharext differ
index 8f8ab64ec3ef12f0940cb5be5065debfc1d41411..a47fb0bf7787f297219fa85cf70a53e3fb55824d 100644 (file)
@@ -4,8 +4,5 @@
        "keywords": ["ext", "extension", "phar", "package", "install"],
        "type": "project",
        "license": "BSD-2-Clause",
-       "bin": ["bin/pharext"],
-       "scripts": {
-               "pre-install-cmd": "make -s"
-       }
+       "bin": ["bin/pharext"]
 }