-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.75 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (68 loc) · 1.75 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "diffyne/diffyne",
"description": "A blazing-fast, server-driven UI framework for PHP with Virtual DOM and Delta Rendering Engine",
"type": "library",
"license": "MIT",
"keywords": ["laravel", "virtual-dom", "reactive", "components", "ui", "framework"],
"autoload": {
"psr-4": {
"Diffyne\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Diffyne\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "xentixar",
"email": "xentixar@gmail.com",
"role": "Software Engineer"
}
],
"require": {
"php": "^8.3",
"illuminate/support": "^12.0",
"sockeon/sockeon": "dev-main"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.91",
"orchestra/pest-plugin-testbench": "^3.0",
"orchestra/testbench": "^10.8",
"phpstan/phpstan": "^2.1",
"pestphp/pest": "^3.0"
},
"scripts": {
"analyse": [
"@php vendor/bin/phpstan analyse"
],
"format": [
"@php vendor/bin/php-cs-fixer fix"
],
"format:test": [
"@php vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"test": [
"@php vendor/bin/pest --no-coverage"
]
},
"extra": {
"laravel": {
"providers": [
"Diffyne\\DiffyneServiceProvider"
],
"aliases": {
"Diffyne": "Diffyne\\Facades\\Diffyne"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"orchestral/pest-plugin-testbench": true,
"pestphp/pest-plugin": true
}
}
}