Skip to content

Commit

Permalink
Start of encrypter
Browse files Browse the repository at this point in the history
  • Loading branch information
tomgrohl committed May 26, 2017
0 parents commit f6b87c6
Show file tree
Hide file tree
Showing 6 changed files with 3,481 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
.idea/
vendor/
bin
30 changes: 30 additions & 0 deletions composer.json
@@ -0,0 +1,30 @@
{
"name": "tomgrohl/laravel4-php71-encrypter",
"description": "Laravel 4.2 Encrypter for PHP 7.1+",
"keywords": ["encryption", "laravel"],
"license": "MIT",
"type": "project",
"config": {
"preferred-install": "dist",
"bin-dir": "bin",
"process-timeout": 10000,
"github-protocols": ["https"]
},
"require": {
"php": "~7.1.0"
},
"require-dev": {
"laravel/laravel": "~4.2.0",
"phpunit/phpunit": "~4.0|~5.7"
},
"autoload": {
"psr-4": {
"Tomgrohl\\Laravel\\Encryption\\": "src/Tomgrohl/Laravel/Encryption/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}

0 comments on commit f6b87c6

Please sign in to comment.