-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.48 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.48 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
45
46
47
48
49
50
51
52
{
"name": "savinmikhail/enforce-aaa-pattern-rector",
"description": "Rector rule to enforce the presence of 'arrange', 'act', 'assert' structure of phpunit tests",
"license": "MIT",
"type": "rector-extension",
"keywords": [
"static analysis",
"dev"
],
"authors": [
{
"name": "Savin Mikhail",
"email": "mikhail.d.savin@gmail.com"
}
],
"homepage": "https://github.com/savinmikhail/EnforceAaaPatternRector",
"require": {
"php": ">=8.2",
"rector/rector": "^2.1.4"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45",
"friendsofphp/php-cs-fixer": "^3.68.5",
"icanhazstring/composer-unused": "^0.8.11",
"maglnet/composer-require-checker": "^4.15",
"phpunit/phpunit": "^10.5.45",
"phpyh/coding-standard": "^2.6.2",
"savinmikhail/add_named_arguments_rector": "^0.1.18",
"savinmikhail/dist-size-optimizer": "^0.2.0"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"SavinMikhail\\EnforceAaaPatternRector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SavinMikhail\\Tests\\EnforceAaaPatternRector\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"sort-packages": true
}
}