first commit

This commit is contained in:
2024-07-15 12:33:27 +02:00
commit ce50ae282b
22084 changed files with 2623791 additions and 0 deletions

View File

@@ -0,0 +1,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": "florian@webflo.org"
}
],
"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"
]
}
}