-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 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
{
"name": "soapbox/signed-requests",
"description": "A wrapper to add the ability to accept signed requests to a Laravel project.",
"keywords": ["laravel", "signed", "requests", "signed-requests"],
"license": "MIT",
"authors": [
{
"name": "Jaspaul Bola",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Soapbox/fake-requests"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.3 || ^8.0",
"guzzlehttp/guzzle": "^7.2",
"illuminate/http": "^8.12",
"illuminate/support": "^8.12",
"nesbot/carbon": "^2.13",
"ramsey/uuid": "^4.0"
},
"require-dev": {
"jshayes/fake-requests": "^5.0",
"mockery/mockery": "^1.4",
"orchestra/testbench": "^6.3",
"phpunit/phpunit": "^9.3",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"SoapBox\\SignedRequests\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}