diff options
author | Paul Duncan <pabs@pablotron.org> | 2018-10-05 08:02:43 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2018-10-05 08:02:43 -0400 |
commit | 94cdff518f29d6556df043292607983b9823de35 (patch) | |
tree | 1facc472ef65c36756c7579f6cc27395416fac12 /php/composer.json | |
parent | c0fa4e7ded7c3dee6de16292985249af7d716f41 (diff) | |
download | luigi-template-94cdff518f29d6556df043292607983b9823de35.tar.bz2 luigi-template-94cdff518f29d6556df043292607983b9823de35.zip |
add top-level README.mkd
Diffstat (limited to 'php/composer.json')
-rw-r--r-- | php/composer.json | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/php/composer.json b/php/composer.json deleted file mode 100644 index f0bdb51..0000000 --- a/php/composer.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "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", - "phan/phan": "^1.0" - }, - - "autoload": { - "psr-4": { - "Pablotron\\Luigi\\": "src/" - } - }, - - "scripts": { - "test-unit": [ - "phpunit --bootstrap vendor/autoload.php tests" - ], - - "test-xml": [ - "phpunit --bootstrap vendor/autoload.php --log-junit test-results-$(date +%Y%m%d%H%M%S).xml tests" - ], - - "test-static": [ - "phan src/*.php" - ], - - "test": [ - "@test-unit", - "@test-static" - ], - - "docs": [ - "phpdoc -d src -t docs --template=responsive-twig --title=LuigiTemplate" - ] - }, - - "scripts-descriptions": { - "test": "Run all unit tests and the static analyzer.", - "test-unit": "Run all unit tests.", - "test-xml": "Run all unit tests and export the results as XML.", - "test-phan": "Run the static analyzer.", - "docs": "Generate the API documentation." - } -} |