Skip to content

Commit 2f800f5

Browse files
author
Robin Cawser
committed
Add password gen
1 parent e3bd7ba commit 2f800f5

7 files changed

Lines changed: 1358 additions & 10 deletions

File tree

.gitignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
### Composer ###
2+
composer.phar
3+
vendor/
4+
bin/
5+
6+
### PhpStorm ###
7+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
8+
9+
/*.iml
10+
11+
## Directory-based project format:
12+
.idea/
13+
# if you remove the above rule, at least ignore the follwing:
14+
15+
# User-specific stuff:
16+
# .idea/workspace.xml
17+
# .idea/tasks.xml
18+
# .idea/dictionaries
19+
20+
# Sensitive or high-churn files:
21+
# .idea/dataSources.ids
22+
# .idea/dataSources.xml
23+
# .idea/sqlDataSources.xml
24+
# .idea/dynamic.xml
25+
# .idea/uiDesigner.xml
26+
27+
# Gradle:
28+
# .idea/gradle.xml
29+
# .idea/libraries
30+
31+
# Mongo Explorer plugin:
32+
# .idea/mongoSettings.xml
33+
34+
## File-based project format:
35+
*.ipr
36+
*.iws
37+
38+
## Plugin-specific files:
39+
40+
# IntelliJ
41+
out/
42+
43+
# mpeltonen/sbt-idea plugin
44+
.idea_modules/
45+
46+
# JIRA plugin
47+
atlassian-ide-plugin.xml
48+
49+
# Crashlytics plugin (for Android Studio and IntelliJ)
50+
com_crashlytics_export_strings.xml

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"prefer-stable": true,
1212
"require": {
1313
"php": ">=5.3.3",
14-
"doctrine/common": "~2.2"
14+
"doctrine/common": "~2.2",
15+
"symfony/security": "~2.1"
1516
},
1617
"require-dev": {
1718
"phpspec/phpspec": "~2.0"

0 commit comments

Comments
 (0)