PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Marco Cesarato   PHP AIO Security Class   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP AIO Security Class
Filter untrusted data to prevent security issues
Author: By
Last change: Update of composer.json
Date: 3 years ago
Size: 964 bytes
 

Contents

Class file image Download
{ "name": "marcocesarato/security", "description": "AIO Security Class offer an automatic system of protection for developers's projects and simplify some security operations as the check of CSRF or XSS all in a simple class. Infact you could just call the main method to have better security yet without too much complicated operations.", "type": "console", "license": "GPL-3.0-or-later", "minimum-stability": "stable", "authors": [ { "name": "Marco Cesarato", "email": "cesarato.developer@gmail.com" } ], "autoload": { "psr-4": { "marcocesarato\\security\\": "src" } }, "scripts": { "fix-cs": "vendor/bin/php-cs-fixer fix --config=.php_cs" }, "require-dev": { "friendsofphp/php-cs-fixer": "^2.15" }, "require": { "php": ">=5.1.2", "ext-dom": "*", "ext-libxml": "*", "ext-gd": "*", "ext-fileinfo": "*", "ext-openssl": "*", "ext-json": "*", "ext-pdo": "*" } }