Skip to content
This repository has been archived by the owner on Jul 8, 2020. It is now read-only.

Commit

Permalink
Added .editorconfig file. See: http://editorconfig.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
corpsee committed Dec 25, 2017
1 parent f09fa34 commit 485a9dc
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 39 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org

root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
84 changes: 46 additions & 38 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,41 +1,49 @@
{
"name": "corpsee/nameless-utilities",
"description": "PHP Utilities compliant with PSR-1, PSR-2, PSR-4 and Composer",
"minimum-stability": "stable",
"type": "library",
"keywords": ["php", "utilities", "helpers", "humanize", "transliterate", "standardize", "url"],
"homepage": "https://github.com/corpsee/nameless-utilities",
"license": "GPL-3.0",
"authors": [
{
"name": "Dmitry Khomutov",
"email": "[email protected]",
"homepage": "http://corpsee.com",
"role": "Developer"
"name": "corpsee/nameless-utilities",
"description": "PHP Utilities compliant with PSR-1, PSR-2, PSR-4 and Composer",
"minimum-stability": "stable",
"type": "library",
"keywords": [
"php",
"utilities",
"helpers",
"humanize",
"transliterate",
"standardize",
"url"
],
"homepage": "https://github.com/corpsee/nameless-utilities",
"license": "GPL-3.0",
"authors": [
{
"name": "Dmitry Khomutov",
"email": "[email protected]",
"homepage": "http://corpsee.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/corpsee/nameless-utilities/issues",
"source": "https://github.com/corpsee/nameless-utilities"
},
"autoload": {
"psr-4": {
"Nameless\\Utilities\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nameless\\Utilities\\Tests\\": "tests/src"
}
},
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"doctrine/instantiator": "1.0.*",
"phpunit/php-token-stream": "~1.0",
"phpdocumentor/reflection-docblock": "~2.0"
}
],
"support": {
"issues": "https://github.com/corpsee/nameless-utilities/issues",
"source": "https://github.com/corpsee/nameless-utilities"
},
"autoload": {
"psr-4": {
"Nameless\\Utilities\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nameless\\Utilities\\Tests\\": "tests/src"
}
},
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"doctrine/instantiator": "1.0.*",
"phpunit/php-token-stream": "~1.0",
"phpdocumentor/reflection-docblock": "~2.0"
}
}
2 changes: 1 addition & 1 deletion infection.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"logs": {
"text": ".\/tests\/runtime\/infection.log"
}
}
}

0 comments on commit 485a9dc

Please sign in to comment.