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

@ -2,16 +2,15 @@
"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",
"debug"
],
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"license": "MIT", "license": "MIT",
"authors" : [{ "authors": [
{
"name": "Nicolas Grekas", "name": "Nicolas Grekas",
"email": "p@tchwork.com" "email": "p@tchwork.com"
}, { },
{
"name": "Symfony Community", "name": "Symfony Community",
"homepage": "https://symfony.com/contributors" "homepage": "https://symfony.com/contributors"
} }
@ -23,14 +22,12 @@
"require-dev": { "require-dev": {
"twig/twig": "~1.20|~2.0" "twig/twig": "~1.20|~2.0"
}, },
"suggest" : {}, "suggest": {
"autoload" : { "ext-symfony_debug": ""
"files" : [
"Resources/functions/dump.php"
],
"psr-4" : {
"Symfony\\Component\\VarDumper\\" : ""
}, },
"autoload": {
"files": [ "Resources/functions/dump.php" ],
"psr-4": { "Symfony\\Component\\VarDumper\\": "" },
"exclude-from-classmap": [ "exclude-from-classmap": [
"/Tests/" "/Tests/"
] ]

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>