-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
58 lines (58 loc) · 1.51 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
50
51
52
53
54
55
56
57
58
{
"name": "slvler/phone-validation",
"description": "Phone Validation API for app.abstractapi.com",
"license": "MIT",
"keywords": [
"cuttly",
"laravel",
"php"
],
"authors": [
{
"name": "slvler",
"email": "slvler@proton.me"
}
],
"homepage": "https://github.com/slvler/phone-validation",
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.2",
"illuminate/support": "^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.6",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5.8",
"laravel/pint": "^1.18"
},
"autoload": {
"psr-4": {
"Slvler\\PhoneValidation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Slvler\\PhoneValidation\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Slvler\\PhoneValidation\\PhoneValidationServiceProvider"
],
"aliases": {
"PhoneValidation": "Slvler\\PhoneValidation\\Facades\\PhoneValidation"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit tests --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"pint": "vendor/bin/pint",
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"minimum-stability": "stable",
"prefer-stable": true
}