-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.17 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
{
"name": "gogain/laravel-phone-verification",
"description": "SMS phone verification component",
"version": "1.0.3",
"license": "MIT",
"authors": [
{
"name": "Nikita Tsurkan",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/database": "^10.0",
"illuminate/support": "^10.0",
"illuminate/console": "^10.0",
"friendsofphp/php-cs-fixer": "^3.14"
},
"require-dev": {
"orchestra/testbench": "^7.22",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Gogain\\LaravelPhoneVerification\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Gogain\\LaravelPhoneVerification\\Test\\": "tests/"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"\\Gogain\\LaravelPhoneVerification\\Providers\\SmsVerificationServiceProvider"
]
}
}
}