-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
50 lines (49 loc) · 1.63 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
{
"name": "caseyamcl/configula",
"type": "library",
"description": "A simple, but versatile, PHP config loader",
"keywords": ["config", "configuration"],
"homepage": "https://github.com/caseyamcl/Configula",
"license": "MIT",
"authors": [
{
"name": "Casey McLaughlin",
"email": "[email protected]",
"homepage": "https://caseymclaughlin.com",
"role": "Developer"
}
],
"require": {
"php" : "^8.2",
"ext-json": "*",
"symfony/yaml" : "^6.4|^7.0",
"dflydev/dot-access-data": "^3.0"
},
"require-dev": {
"phpunit/phpunit" : "^11.0",
"vlucas/phpdotenv" : "^5.5",
"symfony/config" : "^6.4|^7.0",
"squizlabs/php_codesniffer" : "^3.5",
"jaschilz/php-coverage-badger": "^2.0",
"phpstan/phpstan" : "^2.0"
},
"suggest": {
"vlucas/phpdotenv": "Allows loading values from .env files",
"symfony/config" : "Allows using the Symfony loader to set configuration file rules"
},
"autoload": {
"psr-4": { "Configula\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Configula\\": "tests/" }
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit; vendor/bin/php-coverage-badger ./build/logs/clover.xml ./coverage.svg",
"check-style": "vendor/bin/phpcs src tests",
"fix-style": "vendor/bin/phpcbf src tests",
"phpstan": "vendor/bin/phpstan analyse -l 5 src tests"
},
"config": {
"sort-packages": true
}
}