-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·63 lines (63 loc) · 1.46 KB
/
composer.json
File metadata and controls
executable file
·63 lines (63 loc) · 1.46 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
{
"name": "efureev/support",
"description": "PHP Support Package is a collection of useful functions and snippets",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"utility",
"support",
"helpers"
],
"authors": [
{
"name": "Eugene Fureev",
"homepage": "https://github.com/efureev"
}
],
"require": {
"php": "^8.4",
"ext-mbstring": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.47",
"phpstan/phpstan": "^2.1.20",
"phpunit/phpunit": "^12.3",
"squizlabs/php_codesniffer": "^3.13",
"symfony/var-dumper": "^7.3"
},
"autoload": {
"psr-4": {
"Php\\Support\\": "src/"
},
"files": [
"src/Global/base.php"
]
},
"autoload-dev": {
"psr-4": {
"Php\\Support\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"cs-fix": "@php ./vendor/bin/phpcbf",
"infection": "@php ./vendor/bin/infection --coverage=./storage/coverage --threads=4",
"phpcs": "@php ./vendor/bin/phpcs",
"phpstan": "@php ./vendor/bin/phpstan analyze -c phpstan.neon --no-progress --ansi",
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --testdox --colors=always",
"phpunit-cover": "XDEBUG_MODE=coverage php ./vendor/bin/phpunit --coverage-text",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
}
}