-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 2.55 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
{
"name": "code-distortion/fluent-dotenv",
"description": "A wrapper with a fluent interface for new and old versions of vlucas/phpdotenv or symfony/dotenv, providing a common interface to easily read values from .env files",
"keywords": [
".env",
"env",
"config",
"dotenv",
"environment",
"phpdotenv",
"polyfill",
"symfony dotenv",
"vlucas",
"vlucas phpdotenv",
"wrapper"
],
"homepage": "https://github.com/code-distortion/fluent-dotenv",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tim Chandler",
"email": "[email protected]"
}
],
"require": {
"php": "7.0.* | 7.1.* | 7.2.* | 7.3.* | 7.4.* | 8.0.* | 8.1.* | 8.2.* | 8.3.*",
"ext-mbstring": "*"
},
"require-dev": {
"infection/infection": "^0.10 | ^0.11 | ^0.12 | ^0.13 | ^0.14 | ^0.15 | ^0.16 | ^0.17 | ^0.18 | ^0.19 | ^0.20 | ^0.21 | ^0.22 | ^0.23 | ^0.24 | ^0.25 | ^0.26 | ^0.27",
"jchook/phpunit-assert-throws": "^1.0",
"phpstan/phpstan": "^0.9 | ^0.10 | ^0.11 | ^0.12 | ^1.0",
"phpunit/phpunit": "~4.8 | ^5.0 | ^6.0 | ^7.0 | ^8.4 | ^9.0 | ^10.0",
"squizlabs/php_codesniffer": "^3.8.0",
"vlucas/phpdotenv": "^1.1.0 | ^2.0 | ^3.0 | ^4.0 | ^5.0"
},
"autoload": {
"psr-4": {
"CodeDistortion\\FluentDotEnv\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CodeDistortion\\FluentDotEnv\\Tests\\": "tests"
}
},
"scripts": {
"infection": "vendor/bin/infection --threads=max --show-mutations --test-framework-options=\"--exclude-group=skip\"",
"phpcbf": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan.phar analyse --level=max",
"test": "vendor/bin/phpunit"
},
"scripts-descriptions": {
"infection": "Run Infection tests",
"phpcbf": "Run PHP Code Beautifier and Fixer against your application",
"phpcs": "Run PHP CodeSniffer against your application",
"phpstan": "Run PHPStan static analysis against your application",
"test": "Run PHPUnit tests"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ocramius/package-versions": true,
"infection/extension-installer": true
}
},
"suggest": {
"vlucas/phpdotenv": "Allows you to read values from .env files",
"symfony/dotenv": "Allows you to read values from .env files"
}
}