Skip to content

Commit

Permalink
Merge pull request #1 from martinusso/simplecrypt
Browse files Browse the repository at this point in the history
Add project
  • Loading branch information
martinusso authored Oct 23, 2017
2 parents bc23fab + 80bc31f commit 85e9ce7
Show file tree
Hide file tree
Showing 7 changed files with 1,602 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
composer.phar
/vendor/

# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
# composer.lock
coverage-report.xml
45 changes: 45 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"name": "martinusso/simplecrypt",
"type": "library",
"description": "Encrypts and decrypts data using PHP with OpenSSL",
"keywords": [
"PHP",
"encrypt",
"decrypt",
"OpenSSL"
],
"homepage": "https://github.com/martinusso/simplecrypt",
"license": [
"MIT"
],
"authors": [
{
"name": "Breno Borges Martinusso",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"autoload": {
"psr-4": {
"SimpleCrypt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleCrypt\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"scripts": {
"cs": "phpcs --standard=PSR2 src",
"test": "phpunit -c phpunit.xml",
"test-cover": "phpunit --coverage-text"
}
}
Loading

0 comments on commit 85e9ce7

Please sign in to comment.