-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
46 lines (46 loc) · 1.2 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
{
"name": "thecodingmachine/cache-utils",
"description": "Store file related cache items easily",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"psr/cache": "^1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.3",
"satooshi/php-coveralls": "^1.0",
"symfony/cache": "^5.0.7",
"phpstan/phpstan": "^0.12.18",
"doctrine/coding-standard": "^7.0.2",
"phpstan/extension-installer": "^1.0",
"thecodingmachine/phpstan-strict-rules": "^0.12.0"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\CacheUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\CacheUtils\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": ["@cs-check", "@phpstan", "phpunit"]
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}