-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.7 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.7 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "initphp/cache",
"description": "A lightweight PSR-16 (Simple Cache) implementation with file, PDO, Redis, Memcache(d) and WinCache handlers.",
"type": "library",
"license": "MIT",
"keywords": [
"psr-16",
"simple-cache",
"cache",
"caching",
"php",
"file-cache",
"redis",
"memcached",
"pdo",
"initphp"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"support": {
"issues": "https://github.com/InitPHP/Cache/issues",
"source": "https://github.com/InitPHP/Cache",
"docs": "https://github.com/InitPHP/Cache/tree/main/docs"
},
"require": {
"php": ">=8.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.12 || ^2.1",
"friendsofphp/php-cs-fixer": "^3.65"
},
"suggest": {
"ext-pdo": "To use the PDO handler.",
"ext-redis": "To use the Redis handler.",
"ext-memcached": "To use the Memcache handler with the modern Memcached extension.",
"ext-memcache": "To use the Memcache handler with the legacy Memcache extension.",
"ext-wincache": "To use the WinCache handler (Windows only)."
},
"provide": {
"psr/simple-cache-implementation": "3.0"
},
"autoload": {
"psr-4": {
"InitPHP\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Cache\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"stan": "phpstan analyse --no-progress",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"ci": [
"@cs-check",
"@stan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run PHPUnit and produce an HTML coverage report under build/coverage.",
"stan": "Run PHPStan at the level configured in phpstan.neon.dist.",
"cs-check": "Report any PHP-CS-Fixer violations without modifying files.",
"cs-fix": "Apply PHP-CS-Fixer fixes in-place.",
"ci": "Run the full CI bundle locally: cs-check, stan, test."
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
}
}
}