PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Josantonius   PHP Router   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Router
Manage routes and dispatch requests to classes
Author: By
Last change: Updated to 1.0.9 version
Updated to 1.0.9 version
Updated to 1.0.9 version
Updated to 1.0.9 version
Date: 5 years ago
Size: 1,813 bytes
 

Contents

Class file image Download
{ "name": "josantonius/router", "type": "library", "description": "Library for handling routes.", "keywords": [ "Router", "Routes", "PHP" ], "license": "MIT", "authors": [ { "name": "Josantonius", "email": "hello@josantonius.com", "homepage": "https://josantonius.com", "role": "Developer" } ], "support": { "issues": "https://github.com/josantonius/php-router/issues", "forum": "http://stackoverflow.com/tags/josantonius/php-router", "source": "https://github.com/josantonius/php-router" }, "config": { "preferred-install": "dist" }, "minimum-stability": "stable", "require": { "php": "^5.6 || ^7.0", "Josantonius/Url" : "^1.1.9" }, "require-dev": { "phpunit/phpunit": "^5.7 || ^6.0", "squizlabs/php_codesniffer": "^3.0", "friendsofphp/php-cs-fixer": "^2.3 || ^2.8", "phpmd/phpmd": "^2.6" }, "autoload": { "psr-4": { "Josantonius\\Router\\": "src/" } }, "autoload-dev": { "psr-4": { "Josantonius\\Router\\": "tests/" } }, "extra": { "branch-alias": { "dev-master": "1.0-dev" } }, "scripts": { "phpunit": "vendor/bin/phpunit --colors=always;", "phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');", "phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml", "fix": [ "vendor/bin/php-cs-fixer fix -v", "vendor/bin/phpcbf src,tests" ], "tests": [ "clear", "@phpmd", "@phpcs", "@phpunit" ] } }