-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 828 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
{
"name": "rikudou/memoize-bundle",
"description": "Automatic memoization for your Symfony services",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Rikudou\\MemoizeBundle\\": "src/"
}
},
"authors": [
{
"name": "Dominik Chrastecky",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"symfony/framework-bundle": "^5.4|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan": "^1.4"
},
"scripts": {
"fixer": "php-cs-fixer fix --verbose --allow-risky=yes",
"phpstan": "phpstan analyse --level=max src"
}
}