blob: 53554754b1f373185d9dd6b0525e372656d06edc (
plain)
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
|
{
"name": "brick/varexporter",
"description": "A powerful alternative to var_export(), which can export closures and objects without __set_state()",
"type": "library",
"keywords": [
"var_export"
],
"license": "MIT",
"require": {
"php": "^8.1",
"nikic/php-parser": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"php-coveralls/php-coveralls": "^2.2",
"vimeo/psalm": "6.8.4"
},
"autoload": {
"psr-4": {
"Brick\\VarExporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brick\\VarExporter\\Tests\\": "tests/"
}
}
}
|