-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.02 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
{
"name": "geerthauwaerts/ohdear-clicksend-voice",
"description": "Oh Dear! ClickSend Voice Notification (Unofficial)",
"keywords": [
"ohdear",
"clicksend",
"voice",
"webhook"
],
"homepage": "https://github.com/geerthauwaerts/ohdear-clicksend-voice",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Geert Hauwaerts",
"email": "geert@hauwaerts.be"
}
],
"require": {
"php": ">=7.0",
"clicksend/clicksend-php": "^5.0",
"giggsey/libphonenumber-for-php": "^8.12",
"guzzlehttp/guzzle": "^7.4",
"predis/predis": "^2.0",
"ramsey/uuid": "^4.3",
"vlucas/phpdotenv": "^5.4"
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"scripts": {
"phpcs": "phpcs --standard=phpcs.xml --extensions=php app/ tests/",
"start": "php -S 0.0.0.0:8000 -t public",
"phpunit": "phpunit"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5"
}
}