-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 873 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 873 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
43
44
{
"name": "phphp/phphp",
"description": "phphp A PHP VM implementation written in PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "PandaWu",
"email": "itwujunze@gmail.com"
}
],
"require": {
"php": "^7.1",
"nikic/php-parser": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"codedungeon/phpunit-result-printer": "^0.23.4",
"friendsofphp/php-cs-fixer": "^2.13",
"overtrue/phplint": "^1.1"
},
"autoload": {
"psr-4": {
"PHPHP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPHP\\Tests\\": "tests/"
}
},
"scripts": {
"test-html": [
"./vendor/bin/phpunit -c ./phpunit.xml.dist --coverage-text"
],
"fix": [
"./vendor/bin/php-cs-fixer fix $1"
],
"lint": [
"./vendor/bin/phplint"
]
},
"bin": ["bin/phphp"]
}