generated from open-southeners/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.64 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": "open-southeners/laravel-companion-apps",
"description": "Extend your Laravel applications with companions apps (Android, iOS, PWA...)",
"license": "MIT",
"keywords": [
"open-southeners",
"companion-apps",
"laravel-mobile"
],
"authors": [
{
"name": "Ruben Robles",
"email": "[email protected]",
"homepage": "https://d8vjork.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/open-southeners"
}
],
"require": {
"php": "^8.2",
"chillerlan/php-qrcode": "^5.0",
"illuminate/support": "^11.0 || ^12.0",
"jenssegers/agent": "^2.6",
"laravel/prompts": "^0.3"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/facade-documenter": "dev-main",
"orchestra/testbench": "^9.0 || ^10.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.0"
},
"repositories": {
"facade-documenter": {
"type": "vcs",
"url": "[email protected]:laravel/facade-documenter.git"
}
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"OpenSoutheners\\LaravelCompanionApps\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OpenSoutheners\\LaravelCompanionApps\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"OpenSoutheners\\LaravelCompanionApps\\ServiceProvider"
]
}
}
}