-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·44 lines (44 loc) · 1.22 KB
/
composer.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "plexi/php-obfuscator",
"description": "Ofuscador de código para projetos feitos em PHP",
"keywords": ["php","obfuscating","obfuscator"],
"license": "MIT",
"authors": [
{
"name": "Ricardo Pereira",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"docs": "https://github.com/ricardopedias/php-obfuscator",
"issues": "https://github.com/ricardopedias/php-obfuscator/issues",
"source": "https://github.com/ricardopedias/php-obfuscator"
},
"require": {
"php": "^7.4|^8.0",
"league/flysystem": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12.36",
"phpspec/phpspec": "^3.4 || ^4.0 || ^5.0 || ^6.0",
"mockery/mockery": "^1.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PhpObfuscator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhpObfuscator\\Tests\\": "tests/"
}
},
"scripts":{
"test":"vendor/bin/phpunit tests/;",
"analyse" : "vendor/bin/phpstan analyse src --level 8"
}
}