-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
44 lines (43 loc) · 1.21 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
{
"name": "elendev/composer-push",
"description": "Provide a Push command to composer to push to repositories",
"type": "composer-plugin",
"license": "Apache-2.0",
"authors": [
{
"name": "Elendev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {"Elendev\\ComposerPush\\": "src/"}
},
"require": {
"php": ">=7.2 || ^8.0",
"ext-curl": "*",
"ext-json": "*",
"ext-zip": "*",
"composer-plugin-api": "^1.1|^2.0",
"guzzlehttp/guzzle": "^6.0|^7.0",
"symfony/finder": "^4.0|^5.0|^6.0",
"symfony/filesystem": "^4.0|^5.0|^6.0"
},
"extra": {
"class": "Elendev\\ComposerPush\\Plugin"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18|^3.4.0",
"phpunit/phpunit": "^8 || ^9 || ^10",
"composer/composer": "^1.8 || ^2.0"
},
"scripts": {
"test": "phpunit tests",
"cs-fixer": "php-cs-fixer fix src"
},
"replace": {
"elendev/nexus-composer-push": "*"
},
"suggest": {
"elendev/composer-push": "Replaces the elendev/nexus-composer-push repository, which is deprecated."
}
}