forked from Elendev/composer-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 935 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
{
"name": "elendev/nexus-composer-push",
"description": "Provide a Push command to composer to push to Nexus repositories",
"type": "composer-plugin",
"authors": [
{
"name": "Elendev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Elendev\\NexusComposerPush\\": "src/"}
},
"require": {
"php": ">=7.2 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-zip": "*",
"ext-json": "*",
"composer-plugin-api": "^1.1|^2.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"symfony/finder": "^3.0|^4.0|^5.0",
"symfony/filesystem": "^3.0|^4.0|^5.0"
},
"extra": {
"class": "Elendev\\NexusComposerPush\\Plugin"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^8 || ^9",
"composer/composer": "^1.8 || ^2.0"
}
}