-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·72 lines (72 loc) · 1.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "inspirum/mcrouter",
"description": "",
"keywords": [
"inspirum",
"inspishop",
"laravel",
"memcached",
"mcrouter",
"cache"
],
"homepage": "https://github.com/inspirum/mcouter-php-laravel",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tomáš Novotný",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"ext-memcached": "*",
"php": ">=7.1",
"illuminate/cache": "^5.3|^6.0|^7.0|^8.0",
"illuminate/session": "^5.3|^6.0|^7.0|^8.0",
"illuminate/support": "^5.3|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.3",
"mockery/mockery": "^1.2",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-mockery": "^0.12"
},
"autoload": {
"psr-4": {
"Inspirum\\Mcrouter\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Inspirum\\Mcrouter\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Inspirum\\Mcrouter\\Providers\\McrouterServiceProvider"
]
}
},
"scripts": {
"test:test": [
"@phpunit"
],
"test:coverage": [
"@phpunit --coverage-html=./build/coverage"
],
"style:check": [
"@phpcs src tests",
"@phpstan -l 7 src"
],
"style:fix": [
"@phpcbf src tests"
],
"phpunit": "./vendor/bin/phpunit",
"phpcs": "./vendor/bin/phpcs -p -s --standard=./ruleset.xml --extensions=php --colors --report-width=140 --runtime-set ignore_errors_on_exit 1",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon.dist",
"phpcbf": "./vendor/bin/phpcbf -p --standard=./ruleset.xml --extensions=php --runtime-set ignore_errors_on_exit 1"
}
}