-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.37 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.37 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
42
43
44
45
46
47
48
49
50
51
{
"name": "mako/toolbar",
"description": "A debug toolbar for the Mako Framework",
"keywords": ["mako", "framework", "toolbar"],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mako\\toolbar\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"mako\\toolbar\\tests\\": "tests"
}
},
"require": {
"php": ">=8.5.0",
"doctrine/sql-formatter": "^1.5",
"symfony/var-dumper": "^8.0"
},
"require-dev": {
"mako/framework": "^12.0.0",
"mockery/mockery": "^1.6.12",
"monolog/monolog": "^3.10",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5"
},
"extra": {
"branch-alias": {
"dev-master": "9.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"
]
}
}