-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 908 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
{
"name": "medicivn/core",
"license": "MIT",
"autoload": {
"psr-4": {
"MediciVN\\Core\\": "src/",
"MediciVN\\Core\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Medici Dev"
}
],
"require": {
"php": "^8.1",
"illuminate/database": "^9.17",
"illuminate/support": "^9.17",
"illuminate/http": "^9.17",
"illuminate/pipeline": "^9.17",
"intervention/image": "^2.7"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.5",
"nunomaduro/collision": "^6.2",
"laravel/legacy-factories": "^1.3"
},
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
],
"test": [
"./vendor/bin/testbench package:test"
]
}
}