diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..645bc26 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name": "sebastian/finder-facade", + "description": "FinderFacade is a convenience wrapper for Symfony's Finder component.", + "homepage": "https://github.com/sebastianbergmann/finder-facade", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "support": { + "issues": "https://github.com/sebastianbergmann/finder-facade/issues" + }, + "require": { + "theseer/fdomdocument": "~1.3", + "symfony/finder": "~2.3|~3.0" + }, + "autoload": { + "classmap": [ + "src/" + ] + } +} |