-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 981 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
{
"name": "in2it/coffee-cup",
"description": "A nice PHP routine for printing on the coffee cup.",
"type": "project",
"require-dev": {
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"infection/infection": "^0.15.0",
"vimeo/psalm": "^3.8",
"phpstan/phpstan": "^0.12.8"
},
"license": "MIT",
"authors": [
{
"name": "Michelangelo van Dam",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">= 7.3",
"ext-xdebug": "^2.7"
},
"autoload": {
"psr-4": {
"In2it\\Drinks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"In2it\\DrinksTest\\": "tests/"
}
},
"scripts": {
"test": "phpcs && phpunit && infection --configuration=infection.json --min-covered-msi=85 && psalm && phpstan analyse src --level 3"
}
}