-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 909 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 909 Bytes
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
{
"name": "php-forge/baseline",
"type": "library",
"description": "Centralized PHP development baseline: code style, linters, CI workflows, and dev environment tooling.",
"keywords": [
"baseline",
"ci",
"coding-standards",
"ecs",
"editorconfig",
"linters",
"php",
"php-forge",
"prettier",
"rector",
"scaffold-provider",
"super-linter"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.3"
},
"autoload": {
"psr-4": {
"PHPForge\\Baseline\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "0.2.x-dev"
},
"scaffold": {
"manifest": "scaffold.json"
}
},
"config": {
"sort-packages": true
}
}