forked from tienvx/composer-downloads-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.29 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
{
"name": "pact-foundation/composer-downloads-plugin",
"description": "Composer plugin for downloading additional files within any composer package.",
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Rob Bayliss",
"email": "[email protected]"
},
{
"name": "Tim Otten",
"email": "[email protected]"
},
{
"name": "Tien Vo",
"email": "[email protected]"
}
],
"require": {
"composer-plugin-api": "^2.1",
"php": "^8.1",
"leongrdic/smplang": "^1.0.2",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"composer/composer": "^2.3",
"phpunit/phpunit": "^9.6",
"symfony/process": "^5.4 || ^6.4 || ^7.0",
"php-vfs/php-vfs": "^1.4",
"friendsofphp/php-cs-fixer": "^3.51"
},
"autoload": {
"psr-4": {
"LastCall\\DownloadsPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LastCall\\DownloadsPlugin\\Tests\\": "tests/"
}
},
"extra": {
"class": "LastCall\\DownloadsPlugin\\Composer\\Plugin\\ExtraDownloadsPlugin"
}
}