summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json36
1 files changed, 36 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..11ebfba
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,36 @@
+{
+ "name": "phpunit/phpunit-story",
+ "description": "Story extension for PHPUnit to facilitate Behaviour-Driven Development.",
+ "type": "library",
+ "keywords": [
+ "xunit",
+ "tdd",
+ "bdd"
+ ],
+ "homepage": "http://www.phpunit.de/",
+ "license": "BSD-3-Clause",
+ "authors": [
+ {
+ "name": "Sebastian Bergmann",
+ "email": "sb@sebastian-bergmann.de",
+ "role": "lead"
+ }
+ ],
+ "support": {
+ "issues": "https://github.com/sebastianbergmann/phpunit-story/issues",
+ "irc": "irc://irc.freenode.net/phpunit"
+ },
+ "require": {
+ "php": ">=5.2.7",
+ "phpunit/phpunit": ">=3.6.0RC1@stable",
+ "ext-spl": "*"
+ },
+ "autoload": {
+ "classmap": [
+ "PHPUnit/"
+ ]
+ },
+ "include-path": [
+ ""
+ ]
+}