├── .gitignore ├── LICENSE ├── README.md ├── bin └── try ├── composer.json ├── docs └── asciinema.gif └── src └── Try_.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/README.md -------------------------------------------------------------------------------- /bin/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/bin/try -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/composer.json -------------------------------------------------------------------------------- /docs/asciinema.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/docs/asciinema.gif -------------------------------------------------------------------------------- /src/Try_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marijnvanwezel/try/HEAD/src/Try_.php --------------------------------------------------------------------------------