-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
77 lines (77 loc) · 2.14 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
{
"name": "allysonsilva/laravel-multienv",
"description": "This package allows you to use multiple .envs in multitenant environment",
"license": "MIT",
"keywords": [
"allyson",
"env",
"multienv",
"multitenancy",
"multi-tenants",
"php",
"laravel"
],
"authors": [
{
"name": "Allyson Silva",
"email": "dev@allyson.dev",
"homepage": "https://allyson.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/allysonsilva/laravel-multienv",
"require": {
"php": ">=8.0",
"laravel/framework": "^9.32"
},
"require-dev": {
"ergebnis/phpstan-rules": "^1.0",
"nunomaduro/larastan": "^2.2",
"orchestra/testbench": "^7.0",
"phpmd/phpmd": "^2.13",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.5",
"squizlabs/php_codesniffer": "^3.7",
"symplify/phpstan-rules": "10.1.2"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Allyson\\MultiEnv\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/LaravelApp/app/",
"Allyson\\MultiEnv\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Allyson\\MultiEnv\\MultiEnvServiceProvider"
]
}
},
"scripts": {
"test": [
"@test:analyse",
"@test:standard",
"@test:mess",
"@test:unit"
],
"test:analyse": "php -d memory_limit=1G vendor/bin/phpstan analyse --error-format=table --ansi --memory-limit=1G",
"test:mess": "phpmd src ansi phpmd.xml.dist --suffixes php",
"test:standard": "phpcs --report=full --report-width=auto",
"test:unit": "phpunit --colors=always"
}
}