-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 919 Bytes
/
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
{
"name": "moneybatch/laravel-minimalist",
"description": "Moneybatch Laravel Minimalist",
"keywords": [
"nikolaynesov",
"money",
"moneybatch",
"minimalist"
],
"homepage": "https://github.com/moneybatch/laravel-minimalist",
"license": "MIT",
"authors": [
{
"name": "Nikolay Nesov",
"role": "Developer"
}
],
"require": {
"php": "^7.4",
"moneybatch/minimalist": "^1.0"
},
"require-dev": {
"illuminate/contracts": "^8.69",
"illuminate/database": "^8.69",
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Moneybatch\\LaravelMinimalist\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Moneybatch\\LaravelMinimalist\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}