forked from Corveda/PHPSandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 906 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"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": "^4.4",
"jeremeamia/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"
]
}
}