Update lib
This commit is contained in:
parent
078e395bfb
commit
af040dd675
3
htdocs/includes/symfony/var-dumper/.gitignore
vendored
Normal file
3
htdocs/includes/symfony/var-dumper/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
composer.lock
|
||||
phpunit.xml
|
||||
vendor/
|
||||
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
29
htdocs/includes/symfony/var-dumper/phpunit.xml.dist
Normal file
29
htdocs/includes/symfony/var-dumper/phpunit.xml.dist
Normal 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>
|
||||
Loading…
Reference in New Issue
Block a user