forked from websms-com/websmscom-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.06 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.06 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
46
47
48
49
50
{
"name": "hebinet/websms-client",
"description": "A lightweight PHP-client-library for using websms.com SMS services.",
"type": "library",
"homepage": "https://github.com/hebinet/websms-client",
"license": "MIT",
"authors": [
{
"name": "Markus Hebenstreit",
"email": "office@hebinet.at",
"homepage": "https://www.hebinet.at",
"role": "Developer"
},
{
"name": "Gerd Reifenauer",
"email": "gerd.reifenauer@websms.com"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"pestphp/pest": "^1.21",
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^3.4"
},
"autoload": {
"psr-4": {
"WebSms\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"WebSms\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"fix-style": "vendor/bin/php-cs-fixer fix"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}