aboutsummaryrefslogtreecommitdiff
path: root/php/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'php/composer.json')
-rw-r--r--php/composer.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/php/composer.json b/php/composer.json
new file mode 100644
index 0000000..a00d0d4
--- /dev/null
+++ b/php/composer.json
@@ -0,0 +1,38 @@
+{
+ "name": "pablotron/luigi-template",
+ "description": "String emplate library.",
+ "homepage": "https://github.com/pablotron/luigi-template",
+ "license": "MIT",
+
+ "authors": [{
+ "name": "Paul Duncan",
+ "email": "luigi-template@pablotron.org",
+ "homepage": "https://pablotron.org/",
+ "role": "developer"
+ }],
+
+ "require": {
+ "php": "^7"
+ },
+
+ "require-dev": {
+ "phpunit/phpunit": "^7",
+ "phpdocumentor/phpdocumentor": "2.*"
+ },
+
+ "autoload": {
+ "psr-4": {
+ "Luigi\\": "src/"
+ }
+ },
+
+ "scripts": {
+ "test": [
+ "phpunit --bootstrap vendor/autoload.php tests"
+ ],
+
+ "docs": [
+ "phpdoc -d src -t docs --template=responsive-twig --title=LuigiTemplate"
+ ]
+ }
+}