-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
97 lines (97 loc) · 2.99 KB
/
Copy pathcomposer.json
File metadata and controls
97 lines (97 loc) · 2.99 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
91
92
93
94
95
96
97
{
"name": "initphp/sessions",
"description": "Framework-agnostic PHP session manager with pluggable save handlers (File, Cookie, PDO, Redis, Memcache/Memcached, MongoDB).",
"type": "library",
"license": "MIT",
"keywords": [
"initphp",
"sessions",
"session",
"session handler",
"save handler",
"cookie",
"memcache",
"memcached",
"mongodb",
"pdo",
"mysql",
"postgresql",
"sqlite",
"redis"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"homepage": "https://www.muhammetsafak.com.tr",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/InitPHP/Sessions/issues",
"source": "https://github.com/InitPHP/Sessions",
"security": "https://github.com/InitPHP/Sessions/security/policy"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"initphp/encryption": "^2.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^10.5"
},
"suggest": {
"ext-pdo": "Required by the PDOAdapter (MySQL, PostgreSQL, SQLite, ...).",
"ext-redis": "Required by the RedisAdapter.",
"ext-memcached": "Required by the MemCacheAdapter (Memcached driver).",
"ext-memcache": "Required by the MemCacheAdapter (legacy Memcache driver).",
"ext-mongodb": "Required by the MongoDBAdapter.",
"initphp/encryption": "Required by the CookieAdapter to encrypt the session payload."
},
"autoload": {
"psr-4": {
"InitPHP\\Sessions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Sessions\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html build/coverage --coverage-text",
"phpstan": "phpstan analyse --memory-limit=512M",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"qa": [
"@cs-check",
"@phpstan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run PHPUnit with HTML + text coverage reports.",
"phpstan": "Run PHPStan static analysis.",
"cs-check": "Check coding style (PSR-12) without changing files.",
"cs-fix": "Apply coding style fixes in place.",
"qa": "Run cs-check, phpstan and tests in sequence."
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"php-http/discovery": false
}
},
"extra": {
"branch-alias": {
"dev-main": "3.x-dev"
}
}
}