-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.71 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
{
"name": "woda/string",
"type": "library",
"description": "This package contains utilities to work with strings in php",
"license": "proprietary",
"require": {
"php": "^7.4",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"eventjet/coding-standard": "^3.2",
"infection/infection": "^0.20.0",
"maglnet/composer-require-checker": "^2.1",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.32",
"phpstan/phpstan-phpunit": "^0.12.11",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^9.3",
"psalm/plugin-phpunit": "^0.13.0",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"vimeo/psalm": "^4.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Woda\\String\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Woda\\Test\\Functional\\String\\": "tests/functional",
"Woda\\Test\\Unit\\String\\": "tests/unit"
}
},
"minimum-stability": "stable",
"scripts": {
"check": [
"@check-deps",
"@cs-check",
"@phpstan",
"@phpunit",
"@infection"
],
"check-deps": "vendor/bin/composer-require-checker",
"cs-check": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"infection": "vendor/bin/infection --threads=4",
"infection-xdebug": "@composer run --timeout=0 infection -- --initial-tests-php-options='-d zend_extension=xdebug.so'",
"phpstan": "vendor/bin/phpstan analyse",
"phpunit": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm"
}
}