Skip to content

Commit ab08364

Browse files
committed
Update README.md
1 parent 7613ce1 commit ab08364

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PHP PHAR Compiler
22
=================
33

44
[![Latest Stable](http://img.shields.io/packagist/v/secondtruth/phar-compiler.svg)](https://packagist.org/p/secondtruth/phar-compiler)
5-
[![Build Status](https://img.shields.io/travis/secondtruth/php-phar-compiler.svg)](https://travis-ci.org/secondtruth/php-phar-compiler)
5+
[![Build Status](https://img.shields.io/travis/com/secondtruth/php-phar-compiler.svg)](https://travis-ci.com/github/secondtruth/php-phar-compiler)
66
[![Scrutinizer](http://img.shields.io/scrutinizer/g/secondtruth/php-phar-compiler.svg)](https://scrutinizer-ci.com/g/secondtruth/php-phar-compiler)
77
[![Coverage](http://img.shields.io/scrutinizer/coverage/g/secondtruth/php-phar-compiler.svg)](https://scrutinizer-ci.com/g/secondtruth/php-phar-compiler)
88
[![License](http://img.shields.io/packagist/l/secondtruth/phar-compiler.svg)](https://packagist.org/p/secondtruth/phar-compiler)
@@ -20,7 +20,7 @@ $compiler->addIndexFile('bin/mycoolprogram.php');
2020
$compiler->addDirectory('libraries');
2121

2222
$compiler->addFile('vendor/autoload.php');
23-
$compiler->addDirectory('vendor/composer', '!*.php');
23+
$compiler->addDirectory('vendor/composer', '!*.php'); // Exclude non-PHP files
2424
$compiler->addDirectory('vendor/.../Component/Console', ['Tests/*', '!*.php']);
2525

2626
$compiler->compile("$outputDir/mycoolprogram.phar");

0 commit comments

Comments
 (0)