-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.12 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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
{
"name": "mako/repl",
"description": "A REPL for the Mako Framework",
"keywords": ["mako", "framework", "repl"],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "frederic.g.ostby@gmail.com"
}
],
"autoload": {
"psr-4": {
"mako\\repl\\": "src"
}
},
"require": {
"php": ">=8.5.0",
"psy/psysh": "^0.12.19"
},
"require-dev": {
"mako/framework": "^12.0.0",
"mockery/mockery": "^1.6.12",
"phpstan/phpstan": "^2.1.33",
"phpunit/phpunit": "^12.5.4"
},
"extra": {
"branch-alias": {
"dev-master": "8.1-dev"
}
},
"scripts": {
"phpunit": "phpunit --display-incomplete --display-skipped --display-deprecations --display-errors --display-notices --display-warning --display-phpunit-deprecations",
"phpstan": "phpstan analyze src --no-progress --memory-limit=-1 -c phpstan.neon",
"qa": [
"@phpunit",
"@phpstan"
]
}
}