-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.03 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": "paneon/php-to-typescript",
"description": "Generate TypeScript classes and interfaces based on PHP classes.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Paneon\\PhpToTypeScript\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Paneon\\PhpToTypeScript\\": "src/",
"Paneon\\PhpToTypeScript\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Alexander Pape",
"email": "[email protected]"
}
],
"require": {
"doctrine/annotations": "^1.6",
"nikic/php-parser": "^3.1.0|^4.0.0",
"monolog/monolog": "^1.24|^2|^3"
},
"require-dev": {
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^8"
},
"scripts": {
"build": [
"@lint",
"@test"
],
"lint": [
"@php vendor/bin/phpstan analyze src --level=5"
],
"test": [
"vendor/bin/phpunit"
]
}
}