-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 933 Bytes
/
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
{
"name": "okolaa/termiiphp",
"description": "Termii Rest API php library",
"type": "library",
"keywords": [
"sendinblue",
"sms",
"php",
"api"
],
"require": {
"php": "^8.2",
"saloonphp/saloon": "^3.10",
"symfony/var-dumper": "^7.2"
},
"require-dev": {
"pestphp/pest": "^3.5",
"pestphp/pest-plugin-faker": "^3.0",
"jonpurvis/lawman": "^3.1",
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {
"Okolaa\\TermiiPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Douglas Okolaa",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}