-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.29 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
{
"name": "din9xtr/source-context",
"description": "Package for managing source context and proxy pattern implementation for PHP classes with enum support",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Din9xtr",
"homepage": "https://github.com/din9xtr"
}
],
"keywords": [
"source-context",
"laravel context",
"laravel source",
"laravel",
"enum",
"source",
"context"
],
"homepage": "https://github.com/din9xtr/source-context",
"readme": "README.md",
"autoload": {
"psr-4": {
"Din9xtr\\SourceContext\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Din9xtr\\SourceContext\\Tests\\": "tests/",
"Din9xtr\\SourceContext\\Tests\\TestApp\\App\\": "tests/TestApp/app/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"psr/container": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"laravel/framework": "^11",
"phpunit/phpunit": "^13.0"
},
"suggest": {
"laravel/framework": "Required for Laravel integration"
},
"extra": {
"laravel": {
"providers": [
"Din9xtr\\SourceContext\\Integration\\LaravelServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/phpunit"
}
}