generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·60 lines (60 loc) · 1.42 KB
/
composer.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.42 KB
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
{
"name": "glhd/conveyor-belt",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">= 8.0",
"illuminate/support": "^8|^9|^10|^11|^12|13.x-dev|dev-master|dev-main",
"illuminate/collections": "^8|^9|^10|^11|^12|13.x-dev|dev-master|dev-main",
"illuminate/console": "^8|^9|^10|^11|^12|13.x-dev|dev-master|dev-main",
"illuminate/http": "^8|^9|^10|^11|^12|13.x-dev|dev-master|dev-main",
"symfony/console": "^5.4|^6.0|^7.0",
"ext-json": "*",
"jdorn/sql-formatter": "^1.2",
"halaxa/json-machine": "^1.0",
"openspout/openspout": "^4.0",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"orchestra/testbench": "^6.24|^7.10|^8.33|^9.11|^10.0|11.x-dev|dev-master|dev-main",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^10.5|^11.5"
},
"autoload": {
"psr-4": {
"Glhd\\ConveyorBelt\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\ConveyorBelt\\Tests\\": "tests/"
}
},
"scripts": {
"fix-style": "vendor/bin/php-cs-fixer fix",
"check-style": "vendor/bin/php-cs-fixer fix --diff --dry-run"
},
"extra": {
"laravel": {
"providers": [
"Glhd\\ConveyorBelt\\Support\\ConveyorBeltServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}