-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 2.32 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
{
"name": "detain/session-samurai",
"description": "🥷 Universal high-speed asynchronous (non-blocking) SessionHandlerInterface implementation for PHP supporting Semaphores, Mysqli, Redis, SQLite3, Symfony/Cache, WinCache, PhpFastCache, PHP-Cache, PDO, Memcached, FlySystem Filesystem, Illuminate, APCu, APC, OpCache, InfluxDB, WinCache, MongoDb and local file storage.",
"type": "library",
"keywords": ["mysql", "redis", "memcached", "mongodb", "pdo", "asynchronous", "session", "session-management", "mysqli", "non-blocking", "sessionhandlerinterface", "sessionhandler", "semaphore", "sqlite3", "flysystem", "php-cache", "phpfastcache", "winacche", "syfony-cache", "doctrine-dbal", "apcu", "apc", "opcache", "influxdb", "illuminate"],
"license": "GPL-3.0",
"authors": [
{
"name": "Joe Huss",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"ext-session": "*"
},
"require-dev": {
"ext-sqlite3": "*",
"ext-mysqli": "*",
"ext-PDO": "*",
"ext-redis": "*",
"ext-mongodb": "*",
"ext-memcached": "*",
"mongodb/mongodb": "*",
"influxdata/influxdb-client-php": "*",
"league/flysystem": "*",
"friendsofphp/php-cs-fixer": "*",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"phpunit/phpunit": ">=6.0,<10@stable",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"Detain\\SessionSamurai\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Detain\\SessionSamuraiTest\\": "tests/src/"
}
},
"minimum-stability": "dev",
"scripts": {
"changed-files": "git diff --name-only origin/master",
"phpcs": "./vendor/bin/phpcs",
"phpcs-diff": "@composer changed-files | xargs ls -d 2>/dev/null | xargs ./vendor/bin/phpcs",
"phpstan": "./vendor/bin/phpstan analyse",
"phpunit": "./vendor/bin/phpunit --bootstrap tests/Bootstrap.php tests/src/",
"test": [
"@phpcs",
"@phpstan",
"@phpunit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true
}
}
}