forked from ellgreen/laravel-loadfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.76 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
{
"name": "ellgreen/laravel-loadfile",
"description": "A package to help with loading files into MySQL tables",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ellis Green",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"EllGreen\\LaravelLoadFile\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\": "tests/Unit",
"Tests\\Feature\\": "tests/Feature"
}
},
"require": {
"php": "^8.2",
"illuminate/database": "^12.0"
},
"require-dev": {
"orchestra/testbench": "^10.0",
"larastan/larastan": "^3.0",
"pestphp/pest": "^3.7",
"laravel/pint": "^1.21"
},
"scripts": {
"lint": "@php ./vendor/bin/pint",
"static": "@php ./vendor/bin/phpstan analyse",
"test-unit": "@php ./vendor/bin/pest --coverage --min=90 tests/Unit",
"check": [
"@lint",
"@static",
"@test-unit"
],
"test": [
"@docker-up",
"@docker-test"
],
"docker-up": "docker compose up -d database",
"docker-test": "docker compose run --rm app php tests/laravel/laravel-version-test.php"
},
"extra": {
"laravel": {
"providers": [
"EllGreen\\LaravelLoadFile\\Laravel\\Providers\\LaravelLoadFileServiceProvider"
],
"aliases": {
"LoadFile": "EllGreen\\LaravelLoadFile\\Laravel\\Facades\\LoadFile"
}
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
}
}