summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-04-08 15:09:07 +0200
committerRemi Collet <fedora@famillecollet.com>2016-04-08 15:09:07 +0200
commit45345f41798592626993febf4178bc86dee8e67c (patch)
tree438bdeb6237e5ca26186355137fb2cfe8bcb3643
parentcec817baf2d6eced464eca3e12a159f72ab3deda (diff)
atoum: composer.json (2.6.0)
-rw-r--r--composer.json61
1 files changed, 61 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..c62584f
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,61 @@
+{
+ "name": "atoum/atoum",
+ "type": "library",
+ "description": "Simple modern and intuitive unit testing framework for PHP 5.3+",
+ "keywords": ["TDD","atoum","test","unit testing"],
+ "homepage": "http://www.atoum.org",
+ "license": "BSD-3-Clause",
+ "authors":
+ [
+ {
+ "name": "Frédéric Hardy",
+ "email": "frederic.hardy@atoum.org",
+ "homepage": "http://blog.mageekbox.net"
+ },
+ {
+ "name": "François Dussert",
+ "email": "francois.dussert@atoum.org"
+ },
+ {
+ "name": "Gérald Croes",
+ "email": "gerald.croes@atoum.org"
+ },
+ {
+ "name": "Julien Bianchi",
+ "email": "julien.bianchi@atoum.org"
+ },
+ {
+ "name": "Ludovic Fleury",
+ "email": "ludovic.fleury@atoum.org"
+ }
+ ],
+ "require":
+ {
+ "php": ">=5.3.3",
+ "ext-hash": "*",
+ "ext-json": "*",
+ "ext-session": "*",
+ "ext-tokenizer": "*",
+ "ext-xml": "*"
+ },
+ "replace": {
+ "mageekguy/atoum": "*"
+ },
+ "bin":
+ [
+ "bin/atoum"
+ ],
+ "autoload":
+ {
+ "classmap": [ "classes/" ]
+ },
+ "suggest": {
+ "ext-mbstring": "Provides support for UTF-8 strings",
+ "atoum/stubs": "Provides IDE support (like autocompletion) for atoum"
+ },
+ "extra": {
+ "branch-alias": {
+ "dev-master": "2.x-dev"
+ }
+ }
+}