-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.28 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "mako/sentry",
"description": "A Sentry integration for the Mako Framework",
"keywords": ["mako", "framework", "sentry"],
"homepage": "http://makoframework.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Frederic G. Østby",
"email": "frederic.g.ostby@gmail.com"
}
],
"autoload": {
"psr-4": {
"mako\\sentry\\": "src"
}
},
"require": {
"php": ">=8.5.0",
"sentry/sentry": "^4.20"
},
"require-dev": {
"mako/framework": "^12.0.0",
"monolog/monolog": "^3.10",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "7.1-dev"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
},
"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"
]
}
}