-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 739 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "ph-7/obfuscator",
"description": " Simple and effective Obfuscator PHP class (this is not a stupid base64 encoding script, but a real and effective obfuscation script)",
"keywords": ["obfuscator", "obfuscation", "encryption", "hide-code", "encoder", "encode", "obfuscate"],
"type": "library",
"homepage": "https://ph7.me",
"license": "MIT",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "hi@ph7.me",
"homepage": "https://pierrehenry.be"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.5"
},
"autoload": {
"classmap": [
"src/Obfuscator.php"
]
}
}