-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.31 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": "suin/json",
"description": "A Simple wrapper of json_decode() and json_encode(). This provides object-oriented interface and exception-based error handing.",
"keywords": [
"encoder",
"decoder",
"json",
"wrapper",
"json_decode",
"json_encode",
"exceptions"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "suin",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"suin/livexample": "^1.0",
"friendsofphp/php-cs-fixer": "^2.9",
"suin/php-cs-fixer-rules": "^1.0"
},
"autoload": {
"files": [
"src/functions.php"
],
"classmap": [
"src/Json.php"
],
"psr-4": {
"Suin\\Json\\": "src/Json/"
}
},
"autoload-dev": {
"psr-4": {
"Suin\\Json\\": "tests/Json/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-in-ci": "phpunit --coverage-text --coverage-clover clover.xml",
"format": "php-cs-fixer fix --ansi",
"format-preview": "php-cs-fixer fix --ansi --dry-run --diff --diff-format=udiff --verbose",
"example": "php -d auto_prepend_file=vendor/autoload.php -d xdebug.overload_var_dump=0",
"configure-commit-template": "git config --add commit.template .gitmessage"
}
}