-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.17 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
{
"name": "bearsunday/rector-bearsunday",
"type": "rector-extension",
"license": "MIT",
"description": "Rector upgrades rules for BEAR.Sunday Framework",
"require": {
"php": "^8.0",
"rector/rector": "^0.12.19",
"koriym/attributes": "^1.0",
"ray/di": "^2.14"
},
"autoload": {
"psr-4": {
"Rector\\BearSunday\\": "rules/"
}
},
"autoload-dev": {
"psr-4": {
"Rector\\Tests\\": "rules-tests/"
},
"classmap": [
"rules-tests/RayDiNamedAnnotation/Rector/ClassMethod/RayDiNamedAnnotationRector/Fake/"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "./vendor/bin/phpunit rules-tests"
},
"require-dev": {
"bear/package": "^1.16",
"bear/query-repository": "^1.9",
"bear/resource": "^1.20",
"phpunit/phpunit": "^9.5",
"ray/aura-sql-module": "^1.13",
"ray/psr-cache-module": "^1.3",
"ray/query-module": "^0.9.0",
"ray/role-module": "^1.0",
"ray/web-param-module": "^2.1"
},
"config": {
"sort-packages": true
}
}