This repository has been archived by the owner on Aug 31, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
54 lines (54 loc) · 1.7 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
{
"name": "symplify/skipper",
"description": "Skip files by rule class, directory, file or fnmatch",
"license": "MIT",
"require": {
"php": ">=8.0",
"nette/utils": "^3.2",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/finder": "^6.0",
"symfony/filesystem": "^6.0",
"symplify/package-builder": "^11.2",
"symplify/symplify-kernel": "^11.2",
"symplify/smart-file-system": "^11.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5.23"
},
"autoload": {
"psr-4": {
"Symplify\\Skipper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\Skipper\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "11.2-dev"
}
},
"conflict": {
"symplify/composer-json-manipulator": "<11.1.6",
"symplify/easy-coding-standard": "<11.1.6",
"symplify/phpstan-rules": "<11.1.6",
"symplify/easy-testing": "<11.1.6",
"symplify/rule-doc-generator-contracts": "<11.1.6",
"symplify/php-config-printer": "<11.1.6",
"symplify/autowire-array-parameter": "<11.1.6",
"symplify/phpstan-extensions": "<11.1.6",
"symplify/rule-doc-generator": "<11.1.6",
"symplify/vendor-patches": "<11.1.6",
"symplify/symfony-static-dumper": "<11.1.6",
"symplify/monorepo-builder": "<11.1.6",
"symplify/config-transformer": "<11.1.6",
"symplify/easy-ci": "<11.1.6",
"symplify/coding-standard": "<11.1.6",
"symplify/easy-parallel": "<11.1.6"
},
"minimum-stability": "dev",
"prefer-stable": true
}