Skip to content

Commit c407aca

Browse files
committed
Added gitignore & composer file
1 parent 859b596 commit c407aca

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "ioncube/php-openssl-cryptor",
3+
"description": "Simple to use class for encrypting/decrypting using the PHP Openssl library.",
4+
"type": "library",
5+
"license": "MIT",
6+
"require": {
7+
"ext-openssl": "*"
8+
},
9+
"autoload": {
10+
"psr-4": {
11+
"ioncube\\phpOpensslCryptor\\": "src/"
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)