Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
martbock committed Nov 22, 2019
0 parents commit a6c8fba
Show file tree
Hide file tree
Showing 18 changed files with 28,444 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Composer
vendor/

# PHPUnit
.phpunit.result.cache
coverage/

# IDE
.idea/

# macOS
.DS_Store
57 changes: 57 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "martbock/laravel-diceware",
"description": "Diceware Passphrase Generator for Laravel",
"keywords": [
"diceware",
"passphrase",
"password",
"generator",
"laravel"
],
"homepage": "https://github.com/martbock/laravel-diceware",
"license": "MIT",
"authors": [
{
"name": "Martin Bock",
"email": "[email protected]",
"homepage": "https://martin-bock.com",
"role": "Developer"
}
],
"extra": {
"laravel": {
"providers": [
"Martbock\\Diceware\\DicewareServiceProvider"
],
"aliases": {
"Diceware": "Martbock\\Diceware\\DicewareFacade"
}
}
},
"minimum-stability": "dev",
"require": {
"php": "^7.2",
"laravel/framework": "~5.8.0|^6.0"
},
"require-dev": {
"orchestra/testbench": "~3.8.0|^4.0",
"phpunit/phpunit": "^7.5|^8.0"
},
"autoload": {
"psr-4": {
"Martbock\\Diceware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Martbock\\Diceware\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
}
}
Loading

0 comments on commit a6c8fba

Please sign in to comment.