forked from diviky/bright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
104 lines (104 loc) · 3.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
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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "diviky/bright",
"description": "Framework extension",
"keywords": [
"laravel",
"permission",
"acl",
"security"
],
"homepage": "https://github.com/diviky/bright",
"license": "MIT",
"authors": [
{
"name": "Sankar Suda",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"laravel/framework": "^10.2",
"laravel/ui": "^4.2",
"guzzlehttp/guzzle": "^7.2",
"league/flysystem-aws-s3-v3": "^3.10",
"schuppo/password-strength": "^2.6",
"spatie/laravel-permission": "^5.5",
"laravel/sanctum": "^3.0",
"matomo/decompress": "^2.1"
},
"require-dev": {
"diviky/code-analysis": "^2.0",
"laravel/socialite": "^5.0",
"league/oauth2-client": "^2.6"
},
"suggest": {
"portphp/csv": "^1.1",
"portphp/excel": "^1.1",
"portphp/portphp": "^1.3",
"consoletvs/charts": "^6.2",
"matomo/device-detector": "^3.12",
"geocoder-php/chain-provider": "^4.0",
"geocoder-php/common-http": "^4.0",
"geocoder-php/geoip2-provider": "^4.0",
"geoip2/geoip2": "^2.9",
"willdurand/geocoder": "^4.2",
"symfony/yaml": "*",
"laravel/socialite": "^5.0",
"matomo/decompress": "^2.1"
},
"autoload": {
"psr-4": {
"Diviky\\Bright\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Diviky\\Bright\\Tests\\": "tests"
}
},
"scripts": {
"format": "PHP_CS_FIXER_IGNORE_ENV=1 vendor/bin/php-cs-fixer --allow-risky=yes --config=.php-cs-fixer.php --using-cache=no --verbose fix",
"test": "vendor/bin/testbench package:test --parallel",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"psalm": "vendor/bin/psalm --no-cache",
"grum": "vendor/bin/grumphp run",
"stan": "vendor/bin/phpstan src",
"phpmd": "vendor/bin/phpmd src ansi ruleset",
"phpcs": "vendor/bin/phpcs --standard=PSR2 --ignore='*.blade.php' src",
"fix": [
"vendor/bin/php-cs-fixer --allow-risky=yes --config=.php-cs-fixer.php --using-cache=no --verbose fix",
"vendor/bin/psalm --no-cache --alter --issues=InvalidReturnType,MissingReturnType,MissingParamType"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform-check": false,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"Diviky\\Bright\\Providers\\BrightServiceProvider",
"Diviky\\Bright\\Providers\\ShardingServiceProvider",
"Diviky\\Bright\\Providers\\DatabaseServiceProvider",
"Diviky\\Bright\\Providers\\ServiceProvider",
"Diviky\\Bright\\Providers\\ViewServiceProvider"
]
}
}
}