generated from glhd/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·61 lines (61 loc) · 1.3 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
{
"name": "glhd/dawn",
"description": "",
"keywords": [
"laravel"
],
"authors": [
{
"name": "Chris Morrell",
"homepage": "http://www.cmorrell.com"
}
],
"license": "MIT",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pcntl": "*",
"ext-sockets": "*",
"ext-zip": "*",
"illuminate/support": "9.*|10.*|dev-master",
"nyholm/psr7": "^1.5",
"php-webdriver/webdriver": "^1.14",
"react/http": "^1.8",
"symfony/psr-http-message-bridge": "^2.1"
},
"require-dev": {
"orchestra/testbench": "7.*|^8.2.2|dev-master",
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^9.5",
"laravel/sanctum": "^3.0",
"nunomaduro/collision": "^6.1",
"spatie/laravel-ignition": "1.*|2.*"
},
"autoload": {
"psr-4": {
"Glhd\\Dawn\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Glhd\\Dawn\\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\\Dawn\\Providers\\DawnServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}