-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
117 lines (117 loc) · 3.62 KB
/
composer.json
File metadata and controls
117 lines (117 loc) · 3.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "fast-forward/dev-tools",
"description": "Fast Forward Development Tools for PHP projects",
"license": "MIT",
"type": "composer-plugin",
"keywords": [
"dev-tools",
"testing",
"static analysis",
"code style",
"rector",
"ecs",
"fast-forward"
],
"authors": [
{
"name": "Felipe Sayão Lobato Abreu",
"email": "github@mentordosnerds.com"
}
],
"homepage": "https://github.com/php-fast-forward/",
"support": {
"issues": "https://github.com/php-fast-forward/dev-tools/issues",
"wiki": "https://github.com/php-fast-forward/dev-tools/wiki",
"source": "https://github.com/php-fast-forward/dev-tools",
"docs": "https://php-fast-forward.github.io/dev-tools/"
},
"require": {
"php": "^8.3",
"composer-plugin-api": "^2.0",
"composer/composer": "^2.9",
"container-interop/service-provider": "^0.4.1",
"dg/bypass-finals": "^1.9",
"ergebnis/composer-normalize": "^2.50",
"ergebnis/rector-rules": "^1.14",
"fakerphp/faker": "^1.24",
"fast-forward/phpdoc-bootstrap-template": "^1.0",
"friendsofphp/php-cs-fixer": "^3.94",
"icanhazstring/composer-unused": "^0.9.6",
"jolicode/jolinotif": "^3.3",
"nikic/php-parser": "^5.7",
"php-di/php-di": "^7.1",
"php-parallel-lint/php-parallel-lint": "^1.4",
"phpdocumentor/shim": "^3.9",
"phpro/grumphp-shim": "^2.19",
"phpspec/prophecy": "^1.26",
"phpspec/prophecy-phpunit": "^2.5",
"phpunit/php-code-coverage": "^12.5",
"phpunit/phpunit": "^12.5",
"psr/clock": "^1.0",
"psr/container": "^2.0",
"psr/log": "^3.0",
"pyrech/composer-changelogs": "^2.2",
"rector/rector": "^2.3",
"saggre/phpdocumentor-markdown": "^1.0",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"symfony/config": "^7.4",
"symfony/console": "^7.4 || ^8.0",
"symfony/filesystem": "^7.4 || ^8.0",
"symfony/finder": "^7.4 || ^8.0",
"symfony/process": "^7.4 || ^8.0",
"symfony/var-dumper": "^7.4 || ^8.0",
"symfony/var-exporter": "^7.4 || ^8.0",
"symplify/easy-coding-standard": "^13.0",
"thecodingmachine/safe": "^3.4",
"twig/twig": "^3.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"FastForward\\DevTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FastForward\\DevTools\\Tests\\": "tests/"
}
},
"bin": "bin/dev-tools",
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpdocumentor/shim": true,
"phpro/grumphp-shim": true,
"pyrech/composer-changelogs": true
},
"platform": {
"php": "8.3.0"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
},
"class": "FastForward\\DevTools\\Composer\\Plugin",
"gitattributes": {
"keep-in-export": [
"/.agents/",
"/.editorconfig",
"/.gitignore",
"/.php-cs-fixer.dist.php",
"/ecs.php",
"/grumphp.yml",
"/phpunit.xml",
"/rector.php"
]
},
"grumphp": {
"config-default-path": "grumphp.yml"
}
},
"scripts": {
"dev-tools": "dev-tools",
"dev-tools:fix": "@dev-tools --fix"
}
}