This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added .editorconfig file. See: http://editorconfig.org.
- Loading branch information
Showing
3 changed files
with
62 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
"logs": { | ||
"text": ".\/tests\/runtime\/infection.log" | ||
} | ||
} | ||
} |