-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.08 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "methorz/filesystem",
"description": "MethorZ - Filesystem",
"type": "library",
"homepage": "https://github.com/MethorZ/filesystem",
"license": "proprietary",
"keywords": [
"methorz",
"filesystem",
"file",
"directory"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.3"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "^3.10"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"MethorZ\\FileSystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MethorZ\\FileSystemTest\\": "tests/"
}
},
"scripts": {
"cs-check": "vendor/bin/phpcs --standard=phpcs.xml",
"cs-fix": "vendor/bin/phpcbf --standard=phpcs.xml"
}
}