forked from spatie/typescript-transformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "spatie/typescript-transformer",
"description": "Transform your PHP structures to TypeScript types",
"keywords": [
"spatie",
"typescript-transformer"
],
"homepage": "https://github.com/spatie/typescript-transformer",
"license": "MIT",
"authors": [
{
"name": "Ruben Van Assche",
"email": "[email protected]",
"homepage": "https://spatie.be",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"nikic/php-parser": "^4.18|^5.0",
"phpdocumentor/type-resolver": "^1.6.2",
"symfony/process": "^5.2|^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/extension-installer": "^1.1",
"larapack/dd": "^1.1",
"myclabs/php-enum": "^1.7",
"pestphp/pest": "^1.22",
"phpunit/phpunit": "^9.0",
"spatie/data-transfer-object": "^2.0",
"spatie/enum": "^3.0",
"spatie/pest-plugin-snapshots": "^1.1",
"spatie/temporary-directory": "^1.2|^2.0"
},
"autoload": {
"psr-4": {
"Spatie\\TypeScriptTransformer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spatie\\TypeScriptTransformer\\Tests\\": "tests"
}
},
"scripts": {
"analyse" : "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"psalm": "./vendor/bin/psalm -c psalm.xml",
"format": "./vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": false
}
},
"minimum-stability": "dev",
"prefer-stable": true
}