-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1002 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
38
39
{
"name": "mako/haste",
"description": "(Experimental) Boost your application performance by running it on a application server like FrankenPHP",
"keywords": ["mako", "framework", "frankenphp"],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mako\\haste\\": "src"
}
},
"require": {
"php": ">=8.4.0"
},
"require-dev": {
"mako/framework": "^11.0.0-dev",
"phpstan/phpstan": "^2.0.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"phpstan": "phpstan analyze src --no-progress --memory-limit=-1 -c phpstan.neon",
"qa": [
"@phpunit",
"@phpstan"
]
}
}