PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Feature Flag   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Feature Flag
Enable and disable features of Laravel application
Author: By
Last change:
Date: 4 days ago
Size: 1,332 bytes
 

Contents

Class file image Download
{ "name": "mohamedahmed01/feature-flag", "description": "easily switch on and off features using a simple command", "keywords": [ "mohamedahmed01", "feature-flag" ], "homepage": "https://github.com/mohamedahmed01/feature-flag", "license": "MIT", "type": "library", "authors": [ { "name": "Mohamed Ahmed", "email": "mohamedabdelmenem01@gmail.com", "role": "Developer" } ], "require": { "php": "^7.4|^8.0" }, "require-dev": { "orchestra/testbench": "^5.0|^6.0", "phpunit/phpunit": "^9.0" }, "autoload": { "psr-4": { "Mohamedahmed01\\FeatureFlag\\": "src" } }, "autoload-dev": { "psr-4": { "Mohamedahmed01\\FeatureFlag\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Mohamedahmed01\\FeatureFlag\\FeatureFlagServiceProvider" ], "aliases": { "FeatureFlag": "Mohamedahmed01\\FeatureFlag\\FeatureFlagFacade" } } } }