-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
32 lines (32 loc) · 982 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
{
"name": "wapmorgan/php-code-analyzer",
"description": "A program that finds usage of different non-built-in extensions in your php code.",
"type": "package",
"license": "BSD-3-Clause",
"keywords": ["command-line utility", "code analysis"],
"autoload": {
"psr-4": {
"wapmorgan\\PhpCodeAnalyzer\\": "src/"
}
},
"require": {
"docopt/docopt": "~1.0"
},
"bin": ["bin/phpca"],
"extra": {
"phar-builder": {
"compression": "BZip2",
"name": "phpca.phar",
"output-dir": "./",
"entry-point": "bin/phpca",
"include": ["bin", "data"],
"events": {
"command.package.start" : "git describe --tags > bin/version.txt",
"command.package.end": "chmod +x phpca.phar"
}
}
},
"scripts": {
"build": "phar-builder package composer.json"
}
}