-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 1.69 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
74
{
"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": {
"phpcs:fix": "vendor/bin/phpcbf",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse --xdebug",
"phpunit:coverage": [
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"
],
"phpunit": "vendor/bin/phpunit --no-coverage",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"require": {
"php": ">=7.4",
"jawira/case-converter": "^3.5"
},
"require-dev": {
"composer/installers": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"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.10",
"symfony/var-dumper": ">=5.4.40",
"syntatis/coding-standard": "^1.5"
}
}