-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.16 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
{
"name": "deepskylog/laravel-astronomylibrary",
"description": "A library to execute astronomical calculations",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "The DeepskyLog Team",
"email": "developers@DeepskyLog.be",
"homepage": "https://www.deepskylog.org/"
}
],
"homepage": "https://github.com/DeepskyLog/laravel-astronomylibrary",
"keywords": ["Laravel", "laravel-astronomylibrary"],
"require": {
"php": ">=8.0",
"laravel/framework": "^8.0|^9.0|^10.0|^11.0",
"maatwebsite/excel": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"mockery/mockery": "^1.1",
"laravel/laravel": "^8.0|^9.0|^10.0|^11.0"
},
"autoload": {
"psr-0": {
"deepskylog\\AstronomyLibrary\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"deepskylog\\AstronomyLibrary\\AstronomyLibraryServiceProvider"
],
"aliases": {
"laravel-astronomylibrary": "deepskylog\\AstronomyLibrary\\Facades\\astronomyLibrary"
}
}
}
}