-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.74 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
{
"name": "filips123/config-writer",
"description": "Lightweight configuration writer for PHP",
"keywords": [
"settings",
"configuration",
"config",
"unframework",
"microphp"
],
"homepage": "https://github.com/filips123/ConfigWriter/",
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Filip Š",
"email": "[email protected]",
"homepage": "https://projects.filips.si/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/filips123/ConfigWriter/issues/",
"source": "https://github.com/filips123/ConfigWriter/",
"docs": "https://github.com/filips123/ConfigWriter/wiki/"
},
"minimum-stability": "RC",
"prefer-stable": true,
"require": {
"php": ">= 5.5.9"
},
"require-dev": {
"phpunit/phpunit": "~4.8 || ~5.7 || ~6.5 || ~7.5",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"ConfigWriter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ConfigWriter\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpcs",
"@phpunit"
],
"phpcs": "phpcs",
"phpcbf": "phpcbf",
"phpunit": "phpunit"
},
"scripts-descriptions": {
"test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.",
"phpcs": "Checks the coding standard with PHP CodeSniffer.",
"phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.",
"phpunit": "Launches the PHPUnit tests."
}
}