diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..3b3e223 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "phplang/scope-exit", + "description": "Emulation of SCOPE_EXIT construct from C++", + "type": "library", + "keywords": [ + "cleanup", + "scope", + "exit" + ], + "homepage": "https://github.com/phplang/scope-exit", + "license": "BSD", + "authors": [ + { + "name": "Sara Golemon", + "email": "pollita@php.net", + "homepage": "https://twitter.com/SaraMG", + "role": "Developer" + } + ], + "autoload": { + "psr-4": { + "PhpLang\\": "src/" + } + }, + "require-dev": { + "phpunit/phpunit": "*" + } +} |