forked from drupal-composer/preserve-paths
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 891 Bytes
/
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
{
"name": "sandykadam/preserve-paths",
"description": "Composer plugin for preserving custom paths and supporting nested packages",
"type": "composer-plugin",
"keywords": [
"composer-plugin",
"installer",
"custom path",
"nested package"
],
"homepage": "https://github.com/sandykadam/preserve-paths",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://github.com/sandykadam/preserve-paths/issues"
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"phpunit/phpunit": "^9.5",
"derhasi/tempdirectory": "0.1.*",
"squizlabs/php_codesniffer": "2.*",
"escapestudios/symfony2-coding-standard": "2.*"
},
"autoload": {
"psr-4": {
"DrupalComposer\\PreservePaths\\": "src/"
}
},
"extra": {
"class": "DrupalComposer\\PreservePaths\\Plugin"
}
}