-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (31 loc) · 978 Bytes
/
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
45
{
"name": "sidroberts/centum-project",
"description": "A skeleton project for the Centum framework.",
"type": "project",
"license": "UNLICENSE",
"require": {
"php": "~8.1",
"sidroberts/centum": "@dev"
},
"require-dev": {
"codeception/codeception": "~5.0",
"codeception/module-asserts": "~3.0",
"codeception/mockery-module": "~0.5",
"friendsofphp/php-cs-fixer": "~3.0",
"mockery/mockery": "~1.0",
"vimeo/psalm": "~5.0",
"psalm/plugin-mockery": "~1.1"
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/psalm --no-cache",
"test": "vendor/bin/codecept run",
"test-coverage": "vendor/bin/codecept run --coverage-html",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}