-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
executable file
·70 lines (70 loc) · 1.72 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
69
70
{
"name": "mannikj/laravel-wallet",
"description": "Easy to use virtual wallet for your app",
"keywords": [
"depsimon",
"mannikj",
"laravel-wallet",
"virtual",
"currency",
"credits",
"wallet",
"payment"
],
"homepage": "https://github.com/mannikj/laravel-wallet",
"license": "MIT",
"authors": [
{
"name": "Jannik Malken",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Simon Depelchin",
"email": "[email protected]",
"homepage": "https://webartisan.be",
"role": "Developer"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"doctrine/dbal": "^4.0",
"laravel/pint": "1.16.1",
"larastan/larastan": "^2.9",
"orchestra/testbench": "^9.1.1",
"phpunit/phpunit": "^11.1"
},
"autoload": {
"psr-4": {
"MannikJ\\Laravel\\Wallet\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MannikJ\\Laravel\\Wallet\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MannikJ\\Laravel\\Wallet\\WalletServiceProvider"
],
"aliases": {
"Wallet": "MannikJ\\Laravel\\Wallet\\Facades\\WalletFacade"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit tests --colors=always --testdox",
"static": "vendor/bin/phpstan analyse",
"post-update-cmd": [
"vendor/bin/phpstan analyse",
"composer test"
]
}
}