-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (48 loc) · 1.47 KB
/
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
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
{
"name": "sidroberts/centum",
"description": "",
"type": "library",
"license": "MIT",
"readme": "README.md",
"support": {
"source": "https://github.com/SidRoberts/centum",
"issues": "https://github.com/SidRoberts/centum/issues",
"docs": "https://sidroberts.co.uk/centum"
},
"require": {
"php": "~8.1",
"ext-yaml": "~2.0",
"codeception/lib-innerbrowser": "~4.0",
"dragonmantank/cron-expression": "~3.0",
"pda/pheanstalk": "~4.0",
"symfony/css-selector": "~6.1",
"symfony/dom-crawler": "~6.1",
"symfony/browser-kit": "~6.0",
"twig/twig": "~3.0"
},
"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",
"composer/semver": "~3.0"
},
"autoload": {
"psr-4": {
"Centum\\": "src/",
"Tests\\": "tests/"
}
},
"bin": [
"bin/centum"
],
"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"
}
}