-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.46 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
{
"name": "bluewing/sierra",
"type": "library",
"description": "Shared library for Bluewing products",
"license": "proprietary",
"keywords": ["bluewing", "library"],
"authors": [
{
"name": "Luke",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": "^8.1.4",
"ext-json": "*",
"ext-openssl": "*",
"lcobucci/jwt": "^4.1.5",
"stripe/stripe-php": "^7.125.0",
"laravel/ui": "^3.4.5",
"laravel/framework": "^9.10.1"
},
"require-dev": {
"mockery/mockery": "^1.5.0",
"phpunit/phpunit": "^9.5.20",
"orchestra/testbench": "^7.4.0",
"fakerphp/faker": "^1.19"
},
"autoload": {
"classmap": [],
"psr-4": {
"Bluewing\\": "src/app/"
},
"files": [
"src/app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "src/tests/"
}
},
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Bluewing\\Providers\\BluewingServiceProvider",
"Bluewing\\Providers\\JsonWebTokenServiceProvider",
"Bluewing\\Providers\\RefreshTokenServiceProvider",
"Bluewing\\Providers\\StripeServiceProvider",
"Bluewing\\Auth\\Passwords\\BluewingPasswordResetServiceProvider"
]
}
}
}