-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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
{
"name": "ambimax/php-lib-file",
"type": "library",
"homepage": "https://ambimax.de",
"authors": [
{
"name": "Fabian Köhnen",
"email": "fk@ambimax.de"
}
],
"autoload": {
"psr-4": {
"Ambimax\\File\\": "src/"
}
},
"scripts": {
"check": [
"@cs-check",
"@unit-coverage",
"@stan"
],
"cs-check": "vendor/bin/php-cs-fixer fix . --dry-run --rules=@Symfony --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix . --rules=@Symfony",
"unit": "vendor/bin/phpunit",
"stan": "vendor/bin/phpstan analyse -c phpstan.neon",
"unit-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-text"
},
"require": {
"php": ">=8.1",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "~9.5.2",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan-symfony": "^1.1",
"mikey179/vfsstream": "^1.6"
},
"version": "2.1.2"
}