-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.3 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": "backdevs/dotenv-sniffer",
"type": "library",
"description": "A code sniffer for environment variables not declared in .env files",
"homepage": "https://github.com/backdevs/laravel-dotenv-sniffer",
"license": "MIT",
"authors": [
{
"name": "Bogdan",
"email": "bogdan@backdevs.net"
}
],
"keywords": [
"php",
"dotenv",
"sniffer",
"laravel"
],
"bin": [
"bin/desniff"
],
"require": {
"php": "^8.1",
"ext-tokenizer": "*",
"symfony/console": "^6.0|^7.0",
"symfony/validator": "^6.0|^7.0",
"vlucas/phpdotenv": "^5.0",
"symfony/stopwatch": "^6.0|^7.0"
},
"require-dev": {
"ext-intl": "*",
"phpunit/phpunit": "^10.0",
"symfony/var-dumper": "^6.2|^7.0",
"squizlabs/php_codesniffer": "^3.7",
"phpspec/prophecy": "^1.3",
"phpspec/prophecy-phpunit": "^1.1|^2.0"
},
"autoload": {
"psr-4": {
"Backdevs\\DotenvSniffer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit -c phpunit.xml"
}
}