-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.35 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
{
"name": "lumite-studios/haunt-core",
"description": "",
"type": "project",
"authors": [
{
"name": "Lumite Studios",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"laravel/framework": "^8.29",
"jean85/pretty-package-versions": "^2.0",
"livewire/livewire": "^2.4",
"0.0.0/composer-include-files": "^1.6"
},
"require-dev": {
"orchestra/testbench": "^6.13",
"fakerphp/faker": "^1.13"
},
"extra": {
"download-dist": {
"url": "https://github.com/lumite-studios/haunt-core/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
},
"include_files": [
"src/Helpers/override.php"
],
"laravel": {
"aliases": {
"Haunt": "Haunt\\Haunt"
},
"providers": [
"Haunt\\Providers\\HauntServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"Haunt\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": [
"@putenv XDEBUG_MODE=develop",
"phpunit"
],
"test-filter": [
"@putenv XDEBUG_MODE=develop",
"phpunit --filter"
],
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=coverage.xml"
]
}
}