-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.29 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
{
"name": "mathiasreker/php-chmod",
"description": "php-chmod is a PHP library for easily changing file/directory permissions recursively.",
"license": "MIT",
"type": "library",
"keywords": [
"file",
"directory",
"permissions",
"chmod"
],
"authors": [
{
"name": "Mathias Reker",
"role": "Developer"
}
],
"homepage": "https://github.com/mathiasreker/php-chmod",
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"symfony/finder": "^4.4 || ^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"friendsofphp/php-cs-fixer": "^3.45",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"MathiasReker\\PhpChmod\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MathiasReker\\PhpChmod\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpunit/phpunit": true
},
"sort-packages": true
},
"scripts": {
"cs-check": "./vendor/bin/php-cs-fixer fix . --dry-run --diff",
"cs-fix": "./vendor/bin/php-cs-fixer fix .",
"phpstan": "./vendor/bin/phpstan analyse src/ --level=9",
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php --colors=always tests/"
}
}