PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Mohamed Ahmed   Laravel POW   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel POW
Verify if a specific type of work was done
Author: By
Last change:
Date: 13 days ago
Size: 1,324 bytes
 

Contents

Class file image Download
{ "name": "mohamedahmed01/laravel-pow", "description": "This package implements a configurable Proof of Work (PoW) system for Laravel applications to protect against spam and DDoS attacks.", "keywords": [ "mohamedahmed01", "laravel-pow" ], "homepage": "https://github.com/mohamedahmed01/laravel-pow", "license": "MIT", "type": "library", "authors": [ { "name": "Mohamed Ahmed", "email": "mohamedabdelmenem01@gmail.com", "role": "Developer" } ], "require": { "php": "^7.4|^8.0", "illuminate/support": "^8.0|^9.0" }, "require-dev": { "orchestra/testbench": "^6.0|^7.0", "phpunit/phpunit": "^9.0" }, "autoload": { "psr-4": { "Mohamedahmed01\\LaravelPow\\": "src" } }, "autoload-dev": { "psr-4": { "Mohamedahmed01\\LaravelPow\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Mohamedahmed01\\LaravelPow\\LaravelPowServiceProvider" ] } } }