-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
44 lines (44 loc) · 871 Bytes
/
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": "cvar1984/yapo",
"description": "Yet another php obfuscator",
"type": "application",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "GPL-3.0-only",
"authors": [
{
"name": "Cvar1984",
"email": "Cvar1984@pm.me",
"role": "developer"
}
],
"bin": [
"bin/yapo"
],
"autoload": {
"psr-4": {
"Cvar1984\\":"src/"
}
},
"require": {
"php": ">=7.4",
"symfony/console": "4.* | ^6.1.7"
},
"require-dev": {
"humbug/box": "^3.8 | ^4.3.8"
},
"scripts": {
"make": "./vendor/bin/box compile",
"check": "./vendor/bin/box verify ./bin/yapo",
"validates": "./vendor/bin/box validate"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ocramius/package-versions": true
},
"platform": {
"php": "8.1.2"
}
}
}