This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.75 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "loophp/memoize",
"description": "Memoize a closure.",
"keywords": [
"memoize",
"memoization",
"memoizer",
"cache",
"educational"
],
"homepage": "https://github.com/loophp/memoize",
"license": "MIT",
"authors": [
{
"name": "Pol Dellaiera",
"email": "[email protected]",
"homepage": "https://not-a-number.io",
"role": "Author"
}
],
"require": {
"php": ">= 7.4"
},
"require-dev": {
"drupol/php-conventions": "^6.0.0",
"friends-of-phpspec/phpspec-code-coverage": "^6",
"infection/infection": "^0.29",
"infection/phpspec-adapter": "^0.1.1",
"loophp/phpspec-time": "^1.1",
"phpspec/phpspec": "^7",
"phpstan/phpstan-strict-rules": "^1.0",
"vimeo/psalm": "^4"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"loophp\\memoize\\": "src/"
}
},
"scripts": {
"apigen": "./vendor/bin/apigen generate src --destination build/docs",
"bench": "./vendor/bin/phpbench run --report=project --store --precision=3",
"grumphp": "./vendor/bin/grumphp run",
"infection": "./vendor/bin/infection run -j 10",
"phpcbf": "./vendor/bin/phpcbf --ignore=vendor .",
"phpcs": "./vendor/bin/phpcs --ignore=vendor .",
"phpspec": "./vendor/bin/phpspec run",
"scrutinizer": "./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml"
},
"support": {
"forum": "https://github.com/loophp/memoize/issues",
"irc": "irc://irc.freenode.org/php",
"source": "https://github.com/loophp/memoize"
}
}