PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Filip Štamcar   Eventy   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Eventy
Register hooks and run associated to event actions
Author: By
Last change:
Date: 5 years ago
Size: 1,615 bytes
 

Contents

Class file image Download
{ "name": "filips123/eventy", "description": "The WordPress hook system in classic (pure) PHP", "keywords": [ "wordpress", "event", "events", "hook", "hooks", "action", "actions", "filter", "filters" ], "homepage": "https://github.com/filips123/eventy/", "license": "MIT", "authors": [ { "name": "Tor Morten Jensen", "homepage": "https://tormorten.no/", "role": "Original Author" }, { "name": "Filip ?", "email": "projects@filips.si", "homepage": "https://projects.filips.si/" } ], "require": { "php": ">= 5.4.0" }, "require-dev": { "phpunit/phpunit": ">= 4.8.36", "squizlabs/php_codesniffer": "^3.0" }, "autoload": { "psr-4": { "EventyClassic\\": "src/" } }, "autoload-dev": { "psr-4": { "EventyClassic\\Tests\\": "tests/" } }, "scripts": { "test": [ "@phpcs", "@phpunit" ], "phpcs": "phpcs", "phpcbf": "phpcbf", "phpunit": "phpunit", "phpdoc": "phpdocumentor run --config=phpdoc.xml.dist", "phpab": "phpab --phar -o vendor.phar -b . composer.json" }, "scripts-descriptions": { "test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.", "phpcs": "Checks the coding standard with PHP CodeSniffer.", "phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.", "phpunit": "Launches the PHPUnit tests.", "phpdoc": "Builds the documentation with phpDocumentor.", "phpab": "Builds the autoloader PHAR with PHP Autoload Builder." } }