-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.1 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.1 KB
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
{
"name": "le0daniel/php-ts-bindings",
"description": "Library to create type bindings between PHP8 and TS, supporting parsing, serialization and emitting of TS types for PHP objects/input strongly typed",
"type": "library",
"require": {
"php": "^8.4"
},
"require-dev": {
"pestphp/pest": "4.x-dev",
"phpstan/phpstan": "2.1.x-dev",
"laravel/framework": "^11|^12",
"mockery/mockery": "^1.6",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload": {
"psr-4": {
"Le0daniel\\PhpTsBindings\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Leo Studer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest",
"check:types": "phpstan --memory-limit=1G analyse",
"check:all": [
"@test",
"@check:types"
]
},
"extra": {
"laravel": {
"providers": [
"Le0daniel\\PhpTsBindings\\Adapters\\Laravel\\LaravelServiceProvider"
]
}
}
}