-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
55 lines (55 loc) · 1.32 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
55
{
"name": "repman-io/composer-plugin",
"type": "composer-plugin",
"description": "Plugin for Repman - PHP Repository Manager",
"license": "MIT",
"authors": [
{
"name": "Arkadiusz Kondas",
"email": "arkadiusz.kondas@gmail.com"
}
],
"require": {
"php": ">=7.2.0",
"composer-plugin-api": "^2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.5",
"phpunit/phpunit": "^8.5"
},
"extra": {
"class": "Buddy\\Repman\\Composer\\Repman"
},
"autoload": {
"psr-4": {
"Buddy\\Repman\\Composer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Buddy\\Repman\\Composer\\Tests\\": "tests/"
}
},
"scripts": {
"check-cs": [
"php-cs-fixer fix --dry-run --diff"
],
"fix-cs": [
"php-cs-fixer fix"
],
"phpstan": [
"phpstan analyse src --level=max"
],
"phpunit": [
"phpunit --colors=always"
],
"tests": [
"@check-cs",
"@phpstan",
"@phpunit",
"cd tests-plugin && composer install --ignore-platform-reqs"
]
}
}