Skip to content

Commit 042c1d5

Browse files
committed
fix: update version number.
1 parent ad2be6f commit 042c1d5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
php-vendor-creadits creates CREDITS file from LICENSE files of dependencies
44

5+
![Testing](https://github.com/smeghead/php-vendor-credits/actions/workflows/php.yml/badge.svg?event=push) [![Latest Stable Version](http://poser.pugx.org/smeghead/php-vendor-credits/v)](https://packagist.org/packages/smeghead/php-vendor-credits) [![Total Downloads](http://poser.pugx.org/smeghead/php-vendor-credits/downloads)](https://packagist.org/packages/smeghead/php-vendor-credits) [![Latest Unstable Version](http://poser.pugx.org/smeghead/php-vendor-credits/v/unstable)](https://packagist.org/packages/smeghead/php-vendor-credits) [![License](http://poser.pugx.org/smeghead/php-vendor-credits/license)](https://packagist.org/packages/smeghead/php-vendor-credits) [![PHP Version Require](http://poser.pugx.org/smeghead/php-vendor-credits/require/php)](https://packagist.org/packages/smeghead/php-vendor-credits)
56

67
php-vendor-creadits was created as a PHP Composer version of gocredits (https://github.com/Songmu/gocredits).
78

@@ -18,3 +19,10 @@ composer require --dev smeghead/php-vendor-credits
1819
```bash
1920
$ vendor/bin/php-vendor-credits . > CREDITS
2021
```
22+
23+
## Development
24+
25+
```bash
26+
docker compose build
27+
docker compose run --rm php_cli bash
28+
```

bin/php-vendor-credits

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ foreach ([__DIR__ . '/../../../autoload.php', __DIR__ . '/../vendor/autoload.php
1313
use Smeghead\PhpVendorCredits\Command\CreditsCommand;
1414
use Symfony\Component\Console\Application;
1515

16-
$app = new Application('php-vendor-credits', '0.0.1');
16+
$app = new Application('php-vendor-credits', '0.0.3');
1717
$app->add(new CreditsCommand('credits'));
1818
$app->setDefaultCommand('credits', true);
1919
$app->run();

0 commit comments

Comments
 (0)