-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 1.9 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
{
"name": "oliverklee/tdd-exercises",
"description": "Code for workshops on PHPUnit",
"type": "project",
"keywords": [
"tdd",
"phpunit",
"unit testing",
"workshop",
"exercises"
],
"homepage": "https://github.com/oliverklee/tdd-reader",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Oliver Klee",
"email": "[email protected]",
"homepage": "https://www.oliverklee.de/",
"role": "developer"
}
],
"support": {
"source": "https://github.com/oliverklee/tdd-exercises",
"issues": "https://github.com/oliverklee/tdd-exercises/issues"
},
"require": {
"php": "~7.4.0 || ~8.0.0",
"swiftmailer/swiftmailer": "^6.2.5"
},
"require-dev": {
"infection/infection": "^0.21.0",
"mikey179/vfsstream": "^1.6.8",
"phpunit/phpunit": "^9.5.2",
"phpspec/prophecy-phpunit": "^2.0.1"
},
"autoload": {
"psr-4": {
"OliverKlee\\TddExercises\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OliverKlee\\TddExercises\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"config": {
"platform": {
"php": "7.4.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"ci:php:lint": "find src tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:tests:unit": "phpunit tests/Unit",
"ci:tests:functional": "phpunit tests/Functional",
"ci:tests": [
"@ci:tests:unit",
"@ci:tests:functional"
],
"ci:static": [
"@ci:php:lint"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}