-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
52 lines (52 loc) · 1.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
{
"name": "webflo/drupal-finder",
"description": "Helper class to locate a Drupal installation.",
"license": "GPL-2.0-or-later",
"type": "library",
"authors": [
{
"name": "Florian Weber",
"email": "[email protected]"
}
],
"require": {
"composer-runtime-api": "^2.2",
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"DrupalFinder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DrupalFinder\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"mikey179/vfsstream": "^1.6",
"symfony/process": "^6.4"
},
"config": {
"platform": {
"php": "8.1"
}
},
"scripts": {
"install-fixtures": [
"cd tests/fixtures/custom-vendor && composer install",
"cd tests/fixtures/default && composer install"
],
"uninstall-fixtures": [
"rm -rf tests/fixtures/*/composer.lock",
"rm -rf tests/fixtures/custom-vendor/foo",
"rm -rf tests/fixtures/default/web",
"rm -rf tests/fixtures/default/vendor"
],
"reinstall-fixtures": [
"@uninstall-fixtures",
"@install-fixtures"
]
}
}