summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..ecba938
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,27 @@
+{
+ "name": "nette/tester",
+ "description": "An easy-to-use PHP unit testing framework.",
+ "homepage": "https://tester.nette.org",
+ "keywords": ["testing", "unit", "nette"],
+ "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
+ "authors": [
+ {
+ "name": "David Grudl",
+ "homepage": "https://davidgrudl.com"
+ },
+ {
+ "name": "Nette Community",
+ "homepage": "https://nette.org/contributors"
+ }
+ ],
+ "require": {
+ "php": ">=5.3.0"
+ },
+ "autoload": {
+ "classmap": ["src/"]
+ },
+ "bin": ["src/tester"],
+ "extra": {
+ "branch-alias": { "dev-master": "1.7-dev" }
+ }
+}