-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.67 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.67 KB
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
{
"name": "syntatis/utils",
"license": "MIT",
"description": "Handy functions for PHP",
"keywords": [
"utilities",
"validator",
"case-converter"
],
"homepage": "https://github.com/syntatis/utils-php#README",
"authors": [
{
"name": "Thoriq Firdaus",
"homepage": "https://github.com/tfirdaus",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"cache-dir": "tmp/composer/cache",
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Syntatis\\Utils\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Syntatis\\Utils\\Tests\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/phpcbf",
"lint": "vendor/bin/phpcs",
"analyze": "vendor/bin/phpstan analyse --xdebug",
"test": "vendor/bin/phpunit --no-coverage",
"test:coverage": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"
]
},
"require": {
"php": ">=7.4",
"jawira/case-converter": "^3.6"
},
"require-dev": {
"composer/installers": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.13",
"symfony/var-dumper": ">=5.4.40",
"syntatis/coding-standard": "^2.0"
},
"non-feature-branches": ["dependabot/*"]
}