PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of TJ Webb   PHP Manifold Laravel Integration   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Manifold Laravel Integration
Retrieve details from a Manifold account
Author: By
Last change:
Date: 4 years ago
Size: 1,488 bytes
 

Contents

Class file image Download
{ "name": "manifoldco/manifold-laravel", "type": "library", "description": "A package to pull configurations from your Manifold account", "keywords": [ "manifoldco", "manifold" ], "homepage": "https://github.com/manifoldco/manifold-laravel", "authors": [ { "name": "TJ Webb", "email": "webb.tj@gmail.com", "homepage": "http://code.webb.tj", "role": "Developer" } ], "require": { "illuminate/support": "~5.1", "php" : "~7.0" }, "require-dev": { "phpunit/phpunit" : ">=5.4.3", "squizlabs/php_codesniffer": "^2.3" }, "autoload": { "psr-4": { "manifoldco\\manifold\\": "src" } }, "autoload-dev": { "psr-4": { "manifoldco\\manifold\\": "tests" } }, "scripts": { "test": "phpunit", "check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests", "fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests" }, "extra": { "branch-alias": { "dev-master": "1.0-dev" }, "laravel": { "providers": [ "manifoldco\\manifold\\manifoldServiceProvider" ] } }, "config": { "sort-packages": true } }