generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
93 lines (92 loc) · 2.85 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "nalcom/adminify",
"description": "this package installs a website admin dashboard ",
"keywords": [
"Nalcom",
"laravel",
"admin panel",
"Administration"
],
"homepage": "https://github.com/nalcom/adminify",
"license": "MIT",
"authors": [
{
"name": "Nalcom",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-intl": "*",
"akki-io/laravel-google-analytics": "^1.8",
"astrotomic/laravel-translatable": "^11.13",
"biscolab/laravel-recaptcha": "^6.1",
"codezero/laravel-localized-routes": "^4.0.1",
"cviebrock/eloquent-sluggable": "^11.0",
"doctrine/dbal": "^4.0.0",
"guzzlehttp/guzzle": "7.8.1",
"illuminate/contracts": "^11.11",
"kkomelin/laravel-translatable-string-exporter": "^1.22",
"laravel-lang/common": "^6.0",
"laravel/breeze": "^v2.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.9",
"league/iso3166": "^4.3",
"outhebox/blade-flags": "^1.5",
"spatie/laravel-package-tools": "^1.16.4",
"spatie/laravel-permission": "^6.8.0",
"spatie/valuestore": "^1.3.2",
"staudenmeir/laravel-adjacency-list": "^1.22"
},
"require-dev": {
"laravel/pint": "^1.16.1",
"nunomaduro/collision": "^8.0",
"nunomaduro/larastan": "^2.0.1",
"orchestra/testbench": "^9.1.2",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-arch": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"Nalcom\\Adminify\\": "src",
"Nalcom\\Adminify\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Nalcom\\Adminify\\Tests\\": "tests"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"codezero/composer-preload-files": true
}
},
"extra": {
"laravel": {
"providers": [
"Nalcom\\Adminify\\AdminifyServiceProvider"
],
"aliases": {
"Adminify": "Nalcom\\Adminify\\Facades\\Adminify"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true
}