-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.01 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
{
"name": "tplcom/stand-with-cyprus",
"description": "Stand with Cyprus",
"keywords": [
"politics",
"war",
"cyprus"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "tplcom"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"symfony/console": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"bamarni/composer-bin-plugin": "^1.8",
"phpstan/phpstan": "^1.10"
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"bin/stand-with-cyprus"
],
"scripts": {
"php-cs-fixer": "php-cs-fixer fix --diff",
"phpstan": "phpstan analyse",
"build": "rm -rf bin/* && box compile"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}