internetpixels/csrf-protection

View on GitHub
composer.json

Summary

Maintainability
Test Coverage
{
  "name": "internetpixels/csrf-protection",
  "description": "Protect your web app from malicious requests by using CSRF protection tokens in links and forms",
  "type": "library",
  "authors": [
    {
      "name": "Peter van Wilderen",
      "email": "peter@vanwilderen.nl"
    }
  ],
  "autoload": {
    "psr-4": {
      "InternetPixels\\CSRFProtection\\": "src",
      "InternetPixels\\CSRFProtection\\Tests\\": "tests"
    }
  },
  "require": {
    "php": ">=7.4"
  },
  "require-dev": {
    "phpunit/phpunit": "^9.0",
    "squizlabs/php_codesniffer": "3.*"
  }
}