-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
{
"name": "phpexperts/env",
"description": "Use Laravel's pre-5.8 env() function in your non-Laravel projects.",
"keywords": [
"laravel",
"5.7",
"env",
"shim"
],
"homepage": "https://github/phpexpertsinc/",
"license": "MIT",
"authors": [
{
"name": "PHP Experts, Inc.",
"homepage": "https://www.phpexperts.pro/"
},
{
"name": "Theodore R. Smith",
"homepage": "https://www.linkedin.com/in/hopeseekr"
},
{
"name": "Taylor Otwell",
"homepage": "https://www.laravel.com/"
}
],
"require": {
"php": ">=7.0",
"0.0.0/composer-include-files": "*",
"vlucas/phpdotenv": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "*",
"phpunit/phpunit": "6.*|7.*|9.*",
"phpexperts/dockerize": "*",
"phpexperts/skeleton": "*",
"phpstan/phpstan": "*",
"squizlabs/php_codesniffer": "*",
"symfony/var-dumper": "*"
},
"autoload-dev": {
"psr-4": { "PHPExperts\\" : "tests/" }
},
"extra": {
"include_files": [
"src/env-shim.php"
]
},
"config": {
"allow-plugins": {
"0.0.0/composer-include-files": true
}
}
}