Skip to content

Commit 4ca0a71

Browse files
committed
Composer.json added
1 parent 4e78900 commit 4ca0a71

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@
1717
testdata
1818

1919
hsa/log
20+
21+
/vendor/

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Finds texts in HTML and replaces it with suffixed and prefixed string.
33
Originally developed to replace strings with localization function in blade file:
44
`<p>Some nice string</p>` -> `<p>{{ __('Some nice string') }}</p>`
5-
but can be used in any file which contains html (".jsx", ".vue", ".twig") with same purpose. Of course, prefix and suffix are customizable
5+
But can be used in any file which contains html (".jsx", ".vue", ".twig") with same purpose. Of course, prefix and suffix are customizable
66

77
# Installation
88

@@ -18,7 +18,7 @@ Available commands:
1818
- check - Checks folder and gives report with files and count of found strings
1919
- clear-log - If you use log_folder config, logs are generated. this command clear all log files
2020

21-
Use `hsa [command] --help` to now more about command.
21+
Use `hsa [command] --help` to read more about command.
2222

2323

2424
### To Do

bin/hsa

3.6 MB
Binary file not shown.

composer.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"name": "maestroerror/html-strings-affixer",
3+
"description": "Finds texts in HTML and replaces it with suffixed and prefixed string",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "maestroerror",
8+
"email": "revaz.gh@gmail.com"
9+
}
10+
],
11+
"minimum-stability": "dev",
12+
"require": {},
13+
"bin": [
14+
"bin/hsa"
15+
]
16+
}

0 commit comments

Comments
 (0)