From 932df82d42acc1018e68f3d0034d91cc0de20b13 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 7 Apr 2016 15:03:39 +0200 Subject: php-league-plates: 3.1.1 --- composer.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f8bc719 --- /dev/null +++ b/composer.json @@ -0,0 +1,35 @@ +{ + "name": "league/plates", + "description": "Plates, the native PHP template system that's fast, easy to use and easy to extend.", + "keywords": [ + "league", + "package", + "templating", + "templates", + "views" + ], + "homepage": "http://platesphp.com", + "license": "MIT", + "authors" : [ + { + "name": "Jonathan Reinink", + "email": "jonathan@reinink.ca", + "role": "Developer" + } + ], + "require-dev": { + "phpunit/phpunit": "~4.0", + "mikey179/vfsStream": "~1.4.0", + "squizlabs/php_codesniffer": "~1.5" + }, + "autoload": { + "psr-4": { + "League\\Plates\\": "src" + } + }, + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + } +} -- cgit