-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 745 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 745 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
{
"name": "forge/ci",
"type": "library",
"description": "Recipes para ci (continuous integration) github actions y scrutinizer.",
"keywords": [
"forge",
"ci",
"github actions",
"scrutinizer"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"roave/infection-static-analysis-plugin": "^1.7",
"vimeo/psalm": "^4.18"
},
"autoload-dev": {
"psr-4": {
"Forge\\Ci\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}