Skip to content

Releases: mnapoli/silly

1.9.0

18 Jan 15:48
fdb69ac
Compare
Choose a tag to compare

What's Changed

  • Support Symfony 7.0 and PHPUnit 10 by @makraz in #72

New Contributors

Full Changelog: 1.8.3...1.9.0

1.8.3

17 Jul 05:51
895b189
Compare
Choose a tag to compare

What's Changed

  • Revert "Use ArrayInput instead of StringInput" by @mcaskill in #70

New Contributors

Full Changelog: 1.8.2...1.8.3

1.8.2

10 May 10:16
a0549ae
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.8.1...1.8.2

1.8.1

06 Sep 14:22
3ff92aa
Compare
Choose a tag to compare

Bugfixes

New Contributors

Full Changelog: 1.8.0...1.8.1

1.8.0

20 Feb 19:30
c35cd1d
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 1.7.3...1.8.0

1.7.3

13 Dec 09:21
e437baa
Compare
Choose a tag to compare

1.7.2

26 Nov 20:08
66807f8
Compare
Choose a tag to compare

Compatibility with Symfony 5.

1.7.1

26 Dec 21:18
5f7f34f
Compare
Choose a tag to compare

Lighter package when installed via Composer

1.7.0

18 Nov 14:01
bd6d1ec
Compare
Choose a tag to compare
  • #44 Symfony 4 support

1.6.0

22 May 20:26
Compare
Choose a tag to compare
use \Symfony\Component\Console\Style\SymfonyStyle;

...

$app->command('greet', function (SymfonyStyle $io) {
    $io->write('hello');
});
  • #34 & #35 Support default values for arguments/options with - in them:
$console->command('import [number-of-clicks]', function ($numberOfClicks = 1) {
   var_dump($numberOfClicks); // prints 1
});