-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
68
{
"name": "shipsaas/laravel-inbox-process",
"type": "library",
"version": "1.1.2",
"description": "Inbox pattern process implementation for your Laravel Applications",
"keywords": [
"laravel library",
"laravel inbox process",
"laravel inbox pattern",
"inbox pattern",
"webhook",
"inbox",
"inbox process",
"laravel"
],
"authors": [
{
"name": "Phat Tran (Seth Phat)",
"email": "[email protected]",
"homepage": "https://github.com/sethsandaru",
"role": "Sr.SWE"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"laravel/framework": "^10|^11|dev-master",
"ext-pcntl": "*"
},
"require-dev": {
"fakerphp/faker": "^v1.20.0",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10",
"orchestra/testbench": "^8|^9",
"phpunit/php-code-coverage": "^10",
"friendsofphp/php-cs-fixer": "^3.10"
},
"extra": {
"laravel": {
"providers": [
"ShipSaasInboxProcess\\InboxProcessServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"ShipSaasInboxProcess\\": "src/"
},
"files": [
"./src/Functions/inbox_functions.php"
]
},
"autoload-dev": {
"psr-4": {
"ShipSaasInboxProcess\\Tests\\": "tests/"
}
},
"scripts": {
"test-coverage": [
"@php vendor/bin/phpunit --coverage-clover coverage.xml"
],
"test": [
"@php vendor/bin/phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}