-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 927 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
{
"name": "karlomikus/recipe-utils",
"description": "Utilities for extracting normalized ingredient data from recipes",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Karlo Mikuš",
"email": "contact@karlomikus.com",
"role": "Developer"
}
],
"require": {
"php" : "^8.2"
},
"autoload": {
"psr-4": {
"Kami\\RecipeUtils\\": "src/",
"Kami\\RecipeUtilsTests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"phpstan/phpstan": "^1.10",
"symplify/easy-coding-standard": "^12.0",
"symfony/var-dumper": "^7.1",
"phpunit/php-code-coverage": "^10.1"
},
"scripts": {
"phpstan": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit",
"cs": "vendor/bin/ecs check --fix --clear-cache"
}
}