-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
54 lines (54 loc) · 1.66 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
{
"name": "lmc/aerospike-cache",
"description": "Aerospike PHP cache adapter for Symfony/Cache (PSR-6 and PSR-16) and Doctrine/Cache",
"keywords": ["cache", "caching", "psr", "psr-6", "psr6", "psr-16", "psr16", "aerospike"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Lmc\\AerospikeCache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\AerospikeCache\\": "tests/"
}
},
"require": {
"php": "^7.1",
"aerospike/aerospike-client-php": "^7.3.0",
"symfony/cache": "^4.3 || ^5.0"
},
"require-dev": {
"doctrine/cache": "^1.8",
"lmc/coding-standard": "^1.3",
"phpstan/phpstan-phpunit": "^0.12.6",
"phpstan/phpstan": "^0.12.9",
"phpunit/phpunit": "^7.5"
},
"suggest": {
"doctrine/cache": "Allows use of the DoctrineSymfonyAdapter for the AerospikeCache compatibility with Doctrine Cache"
},
"provide": {
"psr/cache-implementation": "1.0",
"psr/simple-cache-implementation": "1.0"
},
"config": {
"sort-packages": true
},
"scripts": {
"all": [
"@analyze",
"@tests"
],
"analyze": [
"@cs",
"@phpstan"
],
"phpstan": "vendor/bin/phpstan analyze ./src ./tests -c phpstan.neon --ansi --level 7",
"tests": "vendor/bin/phpunit",
"tests-ci": "php -dxdebug.coverage_enable=1 vendor/bin/phpunit -c phpunit.xml.dist",
"cs": "vendor/bin/ecs check -vv --ansi src/ tests/",
"fix": "vendor/bin/ecs check -vv --ansi --clear-cache --fix src/ tests/"
}
}