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