{
  "name": "corveda/php-sandbox",
  "description": "A PHP library that can be used to run PHP code in a sandboxed environment",
  "keywords": ["php", "sandbox", "parser", "whitelist", "blacklist"],
  "type": "library",
  "homepage": "https://phpsandbox.org/",
  "license": "BSD-3-Clause",
  "authors": [
    {
      "name": "Elijah Horton",
      "email": "elijah@corveda.com"
    },
    {
      "name": "Corveda, LLC."
    }
  ],
  "require": {
    "php": ">=7.4|>=8.0",
    "ext-json": "*",
    "nikic/php-parser": "^5.0",
    "simpletools/functionparser": "^1.0"
  },
  "require-dev": {
    "symfony/yaml": "~3.0|~4.0|~5.0",
    "phpunit/phpunit": "^9.5"
  },
  "replace": {
    "fieryprophet/php-sandbox": "*"
  },
  "autoload": {
    "files": [
      "src/functions.php"
    ],
    "psr-4": {
      "PHPSandbox\\": "src/"
    }
  },
  "scripts": {
    "test": [
      "vendor/bin/phpunit"
    ]
  }
}
