-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 985 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 985 Bytes
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
{
"name": "dnj/local-filesystem",
"description": "Local disk implementation of dnj/filesystem",
"type": "library",
"license": "MIT",
"require": {
"php": ">=7.4",
"dnj/filesystem": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^0.12.68",
"friendsofphp/php-cs-fixer": "^3.1"
},
"autoload": {
"psr-4": {
"dnj\\Filesystem\\Local\\": "src/"
}
},
"scripts": {
"test:composer:validate": "@composer validate",
"test:composer": [
"@test:composer:validate"
],
"test:types": "vendor/bin/phpstan analyze",
"test:phpunit": "vendor/bin/phpunit",
"test:codestyle": "vendor/bin/php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no",
"test": [
"@test:composer",
"@test:types",
"@test:phpunit",
"@test:codestyle"
]
}
}