This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
75 lines (75 loc) · 3.14 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "ekino/drupal-debug",
"license": "MIT",
"type": "composer-plugin",
"description": "Provides an alternative Debug Kernel for Drupal 8 to improve the Developer eXperience.",
"autoload": {
"psr-4": {
"Ekino\\Drupal\\Debug\\": "src/"
},
"files": [
"src/initialize.php"
]
},
"autoload-dev": {
"psr-4": {
"Ekino\\Drupal\\Debug\\Tests\\Integration\\": "tests/Integration/",
"Ekino\\Drupal\\Debug\\Tests\\Traits\\": "tests/Traits/",
"Ekino\\Drupal\\Debug\\Tests\\Unit\\": "tests/Unit/src/",
"Drupal\\hit_dynamic_page_cache\\": "tests/Integration/Action/DisableDynamicPageCache/fixtures/modules/hit_dynamic_page_cache/src/",
"Drupal\\hit_page_cache\\": "tests/Integration/Action/DisableInternalPageCache/fixtures/modules/hit_page_cache/src/",
"Drupal\\hit_render_cache\\": "tests/Integration/Action/DisableRenderCache/fixtures/modules/hit_render_cache/src/",
"Drupal\\use_custom_route\\": "tests/Integration/Action/WatchRoutingDefinitions/fixtures/modules/use_custom_route/src/",
"Drupal\\use_custom_service\\": "tests/Integration/Action/WatchContainerDefinitions/fixtures/modules/use_custom_service/src/",
"Drupal\\use_twig_template\\": "tests/Integration/Action/DisableTwigCache/fixtures/modules/use_twig_template/src/"
},
"classmap": [
"tests/Unit/src/Kernel/test_classes/"
]
},
"require": {
"php": ">=7.1",
"composer-plugin-api": "^1.1",
"drupal/core": "~8.7.0",
"monolog/monolog": "^1.3",
"nesbot/carbon": "^1.24",
"symfony/config": "^3.4 || >=4.0 <4.3",
"symfony/console": "^3.4 || ^4.0",
"symfony/debug": "^3.4.22 || ^4.1.11 || ^4.2.3",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/event-dispatcher": "^3.4 || ^4.0",
"symfony/filesystem": "^3.4 || ^4.0",
"symfony/http-foundation": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/polyfill-php70": "^1.0",
"symfony/property-access": "^3.4 || ^4.0",
"symfony/var-dumper": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0"
},
"require-dev": {
"composer/composer": "^1.7",
"drupal-composer/drupal-scaffold": "^2.5",
"drush/drush": "^9.0",
"fabpot/goutte": "^3.2.3",
"friendsofphp/php-cs-fixer": "^2.14",
"guzzlehttp/guzzle": "^6.3",
"phpstan/phpstan": "0.11.12",
"phpstan/phpstan-phpunit": "0.11.2",
"phpunit/phpunit": "^7.5",
"symfony/browser-kit": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/panther": "dev-master#f76f91e94c1f29117963d8625f47462a930a03e2",
"symfony/process": "^3.4.2 || ^4.0.2"
},
"extra": {
"class": [
"Ekino\\Drupal\\Debug\\Composer\\Plugin\\ManageConfigurationPlugin",
"Ekino\\Drupal\\Debug\\Composer\\Plugin\\RegisterCommandsPlugin"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}