Browse Source

[bin] Drop extension from scripts in the bin directory.

Daniele Alessandri 11 years ago
parent
commit
e5ec950a11
5 changed files with 3 additions and 3 deletions
  1. 2 2
      README.md
  2. 0 0
      bin/create-command-test
  3. 0 0
      bin/create-phar
  4. 0 0
      bin/create-single-file
  5. 1 1
      tests/README.md

+ 2 - 2
README.md

@@ -56,10 +56,10 @@ Predis\Autoloader::register();
 ```
 
 It is also possible to create a [phar](http://www.php.net/manual/en/intro.phar.php) archive from the
-repository just by launching `bin/create-phar.php`. The generated phar ships with a stub defining an
+repository just by launching `bin/create-phar`. The generated phar contains a stub that defines an
 autoloader function for Predis, so you just need to require the phar to start using the library.
 Alternatively it is possible to generate one single PHP file holding every class like older versions
-of Predis by launching `bin/create-single-file.php`, but this practice __is not__ encouraged.
+of Predis by launching `bin/create-single-file`, but this practice __is not__ encouraged.
 
 
 ### Connecting to Redis ###

+ 0 - 0
bin/generate-command-test.php → bin/create-command-test


+ 0 - 0
bin/create-phar.php → bin/create-phar


+ 0 - 0
bin/create-single-file.php → bin/create-single-file


+ 1 - 1
tests/README.md

@@ -81,7 +81,7 @@ are considered valid). For example, to generate a test case for `SET` (represent
 `Predis\Command\StringSet` class):
 
 ```bash
-$ ./bin/generate-command-test.php --class=StringSet
+$ ./bin/create-command-test --class=StringSet
 ```
 Each command has its own realm (commands that operate on strings, lists, sets and such)
 and this realm is automatically inferred from the name of the specified class. The realm