-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
49 lines (49 loc) · 1.2 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
47
48
49
{
"name": "sparors/laravel-ussd",
"description": "Create ussd with ease",
"license": "MIT",
"authors": [
{
"name": "Isaac Sai",
"email": "isaacsai030@gmail.com",
"homepage": "https://sparors.github.io"
},
{
"name": "Benjamin Manford",
"email": "benjaminmanford@gmail.com",
"homepage": "https://sparors.github.io"
}
],
"homepage": "https://github.com/sparors/laravel-ussd",
"keywords": ["Laravel", "Ussd"],
"require": {
"php": "^8.0",
"illuminate/support": "~8|~9|~10"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"orchestra/testbench": "~6|~7|~8",
"friendsofphp/php-cs-fixer": "^3.41"
},
"autoload": {
"psr-4": {
"Sparors\\Ussd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sparors\\Ussd\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Sparors\\Ussd\\UssdServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix"
}
}