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