Update lib

This commit is contained in:
Laurent Destailleur 2020-12-07 20:33:13 +01:00
parent 078e395bfb
commit af040dd675
3 changed files with 72 additions and 43 deletions

View File

@ -0,0 +1,3 @@
composer.lock
phpunit.xml
vendor/

View File

@ -1,44 +1,41 @@
{
"name" : "symfony/var-dumper",
"type" : "library",
"description" : "Symfony mechanism for exploring and dumping PHP variables",
"keywords" : [
"dump",
"debug"
],
"homepage" : "https://symfony.com",
"license" : "MIT",
"authors" : [{
"name" : "Nicolas Grekas",
"email" : "p@tchwork.com"
}, {
"name" : "Symfony Community",
"homepage" : "https://symfony.com/contributors"
}
],
"require" : {
"php" : ">=5.5.9",
"symfony/polyfill-mbstring" : "~1.0"
},
"require-dev" : {
"twig/twig" : "~1.20|~2.0"
},
"suggest" : {},
"autoload" : {
"files" : [
"Resources/functions/dump.php"
],
"psr-4" : {
"Symfony\\Component\\VarDumper\\" : ""
},
"exclude-from-classmap" : [
"/Tests/"
]
},
"minimum-stability" : "dev",
"extra" : {
"branch-alias" : {
"dev-master" : "3.0-dev"
}
}
}
"name": "symfony/var-dumper",
"type": "library",
"description": "Symfony mechanism for exploring and dumping PHP variables",
"keywords": ["dump", "debug"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Nicolas Grekas",
"email": "p@tchwork.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": ">=5.5.9",
"symfony/polyfill-mbstring": "~1.0"
},
"require-dev": {
"twig/twig": "~1.20|~2.0"
},
"suggest": {
"ext-symfony_debug": ""
},
"autoload": {
"files": [ "Resources/functions/dump.php" ],
"psr-4": { "Symfony\\Component\\VarDumper\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}

View File

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1" />
</php>
<testsuites>
<testsuite name="Symfony VarDumper Component Test Suite">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>