Skip to content

Commit 436b791

Browse files
committed
Info and composer added
1 parent cbf8ab4 commit 436b791

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# RandomFactor
2+
Creates strings with an adjective and a noun. Used for semi-safe stuff like simple two factor authentication.
3+
## Usage
4+
`random_factor($lang = 'en', $spacing = ' ')`
5+
## Installation
6+
Composer, get it as `"marcuspi\random-factor": "dev-master"`

composer.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "marcuspi\/random-factor",
3+
"description": "Makes strings of random words (if you need a semi-safe random word combination)",
4+
"keywords": [
5+
"adjectives",
6+
"nouns",
7+
"random"
8+
],
9+
"homepage": "https:\/\/github.com\/marcusirgens\/RandomFactor",
10+
"license": "WTFPL",
11+
"authors": [
12+
{
13+
"name": "Marcus Pettersen Irgens",
14+
"email": "marcus@comcamp.no",
15+
"role": "Developer"
16+
}
17+
],
18+
"support": {
19+
"issues": "https:\/\/github.com\/marcusirgens\/RandomFactor\/issues"
20+
},
21+
"autoload": {
22+
"files": [
23+
"RandomFactor.php"
24+
]
25+
}
26+
}

0 commit comments

Comments
 (0)