-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.46 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.46 KB
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
{
"name": "librecodecoop/lstelegramnotify",
"description": "LimeSurvey plugin to notify survey submissions in Telegram",
"type": "limesurvey-plugin",
"license": "AGPL-3.0-or-later",
"require": {
"irazasyed/telegram-bot-sdk": "^3.9"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"classmap": [
"LSTelegramNotify.php"
],
"psr-4": {
"LibreCodeCoop\\LSTelegramNotify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LSTelegramNotify\\Tests\\": "tests/"
}
},
"scripts": {
"tools:install": "@composer bin all install --ansi --no-interaction",
"test:unit": "vendor-bin/phpunit/vendor/bin/phpunit -c phpunit.xml",
"cs:check": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix",
"psalm": "vendor-bin/psalm/vendor/bin/psalm --config=psalm.xml",
"lint": "find . -type d \\( -path './vendor' -o -path './vendor-bin' -o -path './node_modules' \\) -prune -o -type f -name '*.php' -print0 | xargs -0 -n1 php -l"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": false
}
}
}