Skip to content

Commit 06670b6

Browse files
committed
Add composer.json file
1 parent 4810319 commit 06670b6

1 file changed

Lines changed: 63 additions & 0 deletions

File tree

composer.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "filips123/config-writer",
3+
"description": "Lightweight configuration writer for PHP",
4+
"keywords": [
5+
"settings",
6+
"configuration",
7+
"config",
8+
"unframework",
9+
"microphp"
10+
],
11+
"homepage": "https://github.com/filips123/ConfigWriter/",
12+
"readme": "README.md",
13+
"type": "library",
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "Filip Š",
18+
"email": "projects@filips.si",
19+
"homepage": "https://projects.filips.si/"
20+
}
21+
],
22+
"support": {
23+
"email": "projects+config-writer@cms.filips.si",
24+
"issues": "https://github.com/filips123/ConfigWriter/issues/",
25+
"source": "https://github.com/filips123/ConfigWriter/",
26+
"docs": "https://github.com/filips123/ConfigWriter/wiki/"
27+
28+
},
29+
"minimum-stability": "RC",
30+
"prefer-stable": true,
31+
"require": {
32+
"php": ">= 5.5.9"
33+
},
34+
"require-dev": {
35+
"phpunit/phpunit": ">= 4.8.36",
36+
"squizlabs/php_codesniffer": "^3.0"
37+
},
38+
"autoload": {
39+
"psr-4": {
40+
"ConfigWriter\\": "src/"
41+
}
42+
},
43+
"autoload-dev": {
44+
"psr-4": {
45+
"ConfigWriter\\Tests\\": "tests/"
46+
}
47+
},
48+
"scripts": {
49+
"test": [
50+
"@phpcs",
51+
"@phpunit"
52+
],
53+
"phpcs": "phpcs",
54+
"phpcbf": "phpcbf",
55+
"phpunit": "phpunit"
56+
},
57+
"scripts-descriptions": {
58+
"test": "Checks the coding standard with PHP CodeSniffer and launches the PHPUnit tests.",
59+
"phpcs": "Checks the coding standard with PHP CodeSniffer.",
60+
"phpcbf": "Fixes the coding standard errors with PHP Code Beautifier and Fixer.",
61+
"phpunit": "Launches the PHPUnit tests."
62+
}
63+
}

0 commit comments

Comments
 (0)