forked from josantonius/php-session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.75 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
{
"name": "josantonius/session",
"type": "library",
"description": "PHP library for handling sessions.",
"keywords": [
"Session",
"HHVM",
"PHP"
],
"license": "MIT",
"authors": [
{
"name": "Josantonius",
"email": "[email protected]",
"homepage": "https://josantonius.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/josantonius/php-session/issues",
"forum": "http://stackoverflow.com/tags/josantonius/php-session",
"source": "https://github.com/josantonius/php-session"
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "stable",
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0",
"squizlabs/php_codesniffer": "^3.0",
"friendsofphp/php-cs-fixer": "^2.3 || ^2.8",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"Josantonius\\Session\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Josantonius\\Session\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"phpunit": "vendor/bin/phpunit --colors=always;",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"fix": [
"vendor/bin/php-cs-fixer fix -v",
"vendor/bin/phpcbf src tests"
],
"tests": [
"clear",
"@phpmd",
"@phpcs",
"@phpunit"
]
}
}