-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·53 lines (53 loc) · 1.06 KB
/
composer.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.06 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
{
"name": "glhd/linen",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"illuminate/support": "^10|^11|^12|^13|dev-master",
"ext-json": "*",
"openspout/openspout": "^4.24"
},
"require-dev": {
"orchestra/testbench": "^8.37|^9.17|^10.11|^11.0|^12.x-dev",
"friendsofphp/php-cs-fixer": "^3.94",
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5|^11.5|^12.5|^13.0"
},
"autoload": {
"psr-4": {
"Glhd\\Linen\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\Linen\\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": []
}
},
"minimum-stability": "dev",
"prefer-stable": true
}