-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1000 Bytes
/
composer.json
File metadata and controls
42 lines (42 loc) · 1000 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "php-java/php-java",
"description": "JVM emulator by PHP",
"type": "library",
"license": "MIT",
"version": "0.0.7.1-dev",
"authors": [
{
"name": "memory"
}
],
"bin": [
"PHPJava"
],
"require": {
"php": ">=7.2",
"ext-zip": "*",
"monolog/monolog": "^1.24",
"gabrielelana/byte-units": "^0.5.0",
"symfony/console": "^4.2",
"phpdocumentor/reflection-docblock": "^4.3"
},
"autoload": {
"psr-4": {
"PHPJava\\": "src/",
"PHPJava\\Console\\": "console/"
}
},
"autoload-dev": {
"psr-4": {
"PHPJava\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^2.14"
},
"scripts": {
"tests": "phpunit tests --stop-on-failure && phpcs -n --standard=phpcs.xml src"
}
}