-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 740 Bytes
/
Copy pathcomposer.json
File metadata and controls
34 lines (34 loc) · 740 Bytes
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
{
"license": "MIT",
"require": {
"php": "^8.3",
"ext-curl": "*",
"dibi/dibi": "^5.0",
"twig/twig": "^3.26",
"nesbot/carbon": "^3.2",
"jenssegers/agent": "^2.6",
"vlucas/phpdotenv": "^5.6",
"monolog/monolog": "^3.10",
"minishlink/web-push": "^9.0"
},
"require-dev": {
"phpstan/phpstan": "^2.2",
"friendsofphp/php-cs-fixer": "^3.66",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Mk\\Framework\\": "src/"
}
},
"scripts": {
"test": "phpunit --no-coverage",
"stan": "phpstan analyse --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"check": [
"@stan",
"@test"
]
}
}