-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 756 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "bobkingstone/securepass",
"description": "Auto-generate random password string with option for the inclusion of symbols. Uses Laravels Str random function to generate original alpha numeric string",
"keywords": ["Laravel","Passwprd"],
"license": "MIT",
"authors": [
{
"name": "Bob Kingstone",
"email": "robert.kingstone@uglygekko.co.uk",
"homepage": "http://uglygekko.co.uk"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "4.2.*"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-0": {
"Bobkingstone\\Securepass\\": "src/"
}
},
"minimum-stability": "stable"
}