comparison vendor/symfony/phpunit-bridge/composer.json @ 0:c75dbcec494b

Initial commit from drush-created site
author Chris Cannam
date Thu, 05 Jul 2018 14:24:15 +0000
parents
children 12f9dff5fda9
comparison
equal deleted inserted replaced
-1:000000000000 0:c75dbcec494b
1 {
2 "name": "symfony/phpunit-bridge",
3 "type": "symfony-bridge",
4 "description": "Symfony PHPUnit Bridge",
5 "keywords": [],
6 "homepage": "https://symfony.com",
7 "license": "MIT",
8 "authors": [
9 {
10 "name": "Nicolas Grekas",
11 "email": "p@tchwork.com"
12 },
13 {
14 "name": "Symfony Community",
15 "homepage": "https://symfony.com/contributors"
16 }
17 ],
18 "require": {
19 "php": ">=5.3.3 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
20 "php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
21 "php": ">=5.3.3"
22 },
23 "suggest": {
24 "symfony/debug": "For tracking deprecated interfaces usages at runtime with DebugClassLoader",
25 "ext-zip": "Zip support is required when using bin/simple-phpunit"
26 },
27 "conflict": {
28 "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0"
29 },
30 "autoload": {
31 "files": [ "bootstrap.php" ],
32 "psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
33 "exclude-from-classmap": [
34 "/Tests/"
35 ]
36 },
37 "bin": [
38 "bin/simple-phpunit"
39 ],
40 "minimum-stability": "dev",
41 "extra": {
42 "branch-alias": {
43 "dev-master": "3.4-dev"
44 },
45 "thanks": {
46 "name": "phpunit/phpunit",
47 "url": "https://github.com/sebastianbergmann/phpunit"
48 }
49 }
50 }