This repository has been archived by the owner on Dec 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.65 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
54
55
{
"name": "symplify/smart-file-system",
"description": "Sanitized FileInfo with safe getRealPath() and other handy methods",
"license": "MIT",
"require": {
"php": ">=8.1",
"nette/utils": "^3.2",
"symfony/filesystem": "^6.2",
"symfony/finder": "^6.2",
"symplify/easy-testing": "^11.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5.26",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"rector/rector": "^0.15.10",
"symplify/easy-ci": "^11.1",
"symplify/easy-coding-standard": "^11.1",
"symplify/phpstan-extensions": "^11.1",
"symplify/phpstan-rules": "11.2.3.72",
"symplify/symplify-kernel": "^11.1",
"tomasvotruba/unused-public": "^0.0.34"
},
"autoload": {
"psr-4": {
"Symplify\\SmartFileSystem\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\SmartFileSystem\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "11.2-dev"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"rector": "vendor/bin/rector process --dry-run --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"cweagans/composer-patches": true,
"phpstan/extension-installer": true
}
}
}