forked from Elendev/composer-push
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.4 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
48
49
50
51
52
53
54
{
"name": "clearlyip/composer-push",
"description": "Provide a Push command to composer to push to repositories",
"type": "composer-plugin",
"license": "Apache-2.0",
"authors": [
{
"name": "Andrew Nagy",
"email": "andrew.nagy@clearlyip.com"
},
{
"name": "Elendev",
"email": "jonas.renaudot@gmail.com"
}
],
"autoload": {
"psr-4": {
"Clearlyip\\ComposerPush\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clearlyip\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-zip": "*",
"composer-plugin-api": "^2.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/finder": "^6.0 || ^7.0",
"symfony/filesystem": "^6.0 || ^7.0"
},
"extra": {
"class": "Clearlyip\\ComposerPush\\Plugin"
},
"require-dev": {
"phpunit/phpunit": "^10.5.28",
"composer/composer": "^2.7.7",
"squizlabs/php_codesniffer": "^3.10.2",
"vimeo/psalm": "^5.25.0"
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"psalm": "psalm",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcbf": "phpcbf --standard=phpcs.xml"
},
"replace": {
"elendev/nexus-composer-push": "*",
"elendev/composer-push": "*"
}
}