-
- Downloads
INITIAL COMMIT
parents
No related branches found
No related tags found
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- composer.json 26 additions, 0 deletionscomposer.json
- src/SuppressedExceptions.php 25 additions, 0 deletionssrc/SuppressedExceptions.php
- src/WithSuppressedExceptions.php 44 additions, 0 deletionssrc/WithSuppressedExceptions.php
- tests/bootstrap.php 5 additions, 0 deletionstests/bootstrap.php
- tests/simple.phpt 40 additions, 0 deletionstests/simple.phpt
.gitignore
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "grifart/suppressed-exceptions", | ||
"description": "Adds support for suppressed exceptions as known in Java. https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html#suppressed-exceptions", | ||
"type": "library", | ||
"require": { | ||
"php": ">=7.1" | ||
}, | ||
"require-dev": { | ||
"nette/tester": "^2.1", | ||
"phpstan/phpstan": "^0.10.5", | ||
"jakub-onderka/php-parallel-lint": "^1.0", | ||
"jakub-onderka/php-console-highlighter": "^0.4.0" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jan Kuchař", | ||
"email": "honza.kuchar@grifart.cz" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Grifart\\SuppressedExceptions\\": "src" | ||
} | ||
} | ||
} |
src/SuppressedExceptions.php
0 → 100644
src/WithSuppressedExceptions.php
0 → 100644
tests/bootstrap.php
0 → 100644
tests/simple.phpt
0 → 100644
Please register or sign in to comment