aboutsummaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json13
1 files changed, 11 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index 1b2a513..14c8f16 100644
--- a/composer.json
+++ b/composer.json
@@ -2,8 +2,10 @@
"name": "snilius/twig-sort-by-field",
"description": "A Twig Extension filter to sort an array of entries (objects or arrays) by the specified field",
"require-dev": {
+ "php": ">=5.5.9",
"phpunit/phpunit": "~4.5",
- "twig/extensions": "~1.2"
+ "twig/extensions": "~1.2",
+ "doctrine/collections": "^1.3"
},
"license": "Apache-2.0",
"authors": [
@@ -14,8 +16,15 @@
],
"autoload": {
"psr-4": {
- "Snilius\\Twig\\": "src/",
+ "Snilius\\Twig\\": "src/"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
"Snilius\\Twig\\Tests\\": "test/"
+ },
+ "psr-0": {
+ "": "test/"
}
}
}