This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.66 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
{
"name": "pwweb/laravel-core",
"description": "Additional core functionalities for Laravel",
"license": "MIT",
"authors": [
{
"name": "FP",
"homepage": "https://github.com/pwweb/"
},
{
"name": "RAB",
"homepage": "https://github.com/rabrowne85"
}
],
"homepage": "https://github.com/pwweb/core",
"keywords": [
"library",
"laravel",
"core",
"traits"
],
"require": {
"php": ">=7.4 || ~8.0",
"laravel/framework": "^8.24.0 || ^9.0 || ^10.0",
"laravel/socialite": "^5.0",
"laracasts/flash": "^3.2.1",
"spatie/laravel-enum": "^2.2 || ^3.0",
"spatie/laravel-medialibrary": "^9.0 || ^10.0",
"spatie/laravel-permission": "^5.0",
"kalnoy/nestedset": "^5.0 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.3",
"orchestra/testbench": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"PWWEB\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PWWEB\\Core\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PWWEB\\Core\\CoreServiceProvider"
],
"aliases": {
"Core": "PWWEB\\Core\\Facades\\Core",
"Localisation": "PWWEB\\Core\\Facades\\Localisation"
}
}
},
"scripts": {
"psalm": "vendor/bin/psalm -c psalm.xml --show-info=true",
"test": "vendor/bin/phpunit --colors=always"
},
"minimum-stability": "dev",
"prefer-stable": true
}