This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
65 lines (65 loc) · 2.31 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
{
"name": "lemberg/draft-environment",
"description": "Development environment for Draft Drupal.",
"license": "GPL-2.0-or-later",
"type": "composer-plugin",
"require": {
"php": ">=7.4",
"composer-plugin-api": "^2.0",
"nette/finder": "^2.5.2",
"nette/robot-loader": "^3.4.1",
"symfony/filesystem": "^3.4.47 || ^4.4.27 || ^5.3.4 || ^6.0.9",
"symfony/yaml": "^3.4.41 || ^4.4.9 || ^5.3 || ^6.0.10",
"t2l/comments": "^1.1.0"
},
"require-dev": {
"composer/composer": "^2.2.12 || ^2.3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"dg/bypass-finals": "^1.3.1",
"drupal/coder": "^8.3.13",
"ergebnis/composer-normalize": "^2.15.0",
"ergebnis/phpstan-rules": "^1.0.0",
"mikey179/vfsstream": "^1.6.10",
"php-mock/php-mock-phpunit": "^2.5",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpro/grumphp": "^1.5.0",
"phpstan/extension-installer": "^1.1.0",
"phpstan/phpstan": "^1.8.0",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.1.1",
"phpstan/phpstan-strict-rules": "^1.4.0",
"phpunit/phpunit": "^9.5.10",
"symfony/process": "^3.4.47 || ^4.4.30 || ^5.3.7 || ^6.0.8",
"thecodingmachine/phpstan-strict-rules": "^1.0.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Lemberg\\Draft\\Environment\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lemberg\\Tests\\Extensions\\Draft\\Environment\\": "tests/Extensions",
"Lemberg\\Tests\\Functional\\Draft\\Environment\\": "tests/Functional",
"Lemberg\\Tests\\Traits\\Draft\\Environment\\": "tests/Traits",
"Lemberg\\Tests\\Unit\\Draft\\Environment\\": "tests/Unit"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"extra": {
"class": "Lemberg\\Draft\\Environment\\Composer\\Plugin"
}
}