-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.46 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
{
"name": "retrofit-drupal/retrofit",
"description": "Retrofit provides compatibility layers to run legacy Drupal code.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Matt Glaman",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"drupal/core": "^10"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.31",
"mglaman/drupal-test-helpers": "^1.0",
"mglaman/phpstan-drupal": "^1.2",
"mikey179/vfsstream": "^1.6",
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"symfony/css-selector": "^6.3",
"symfony/phpunit-bridge": "^6.2"
},
"autoload": {
"psr-4": {
"Retrofit\\Drupal\\": "src"
},
"files": [
"src/constants.php",
"src/functions.php",
"bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Retrofit\\Drupal\\Tests\\": "tests/src"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"php tests/bootstrap.php"
]
}
}