-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
72 lines (72 loc) · 2.11 KB
/
Copy pathcomposer.json
File metadata and controls
72 lines (72 loc) · 2.11 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
69
70
71
72
{
"name": "jkudish/graft",
"description": "Git manager and platform provider for Laravel — facades, typed DTOs, test fakes, and scoped repositories.",
"keywords": ["laravel", "git", "github", "facade", "testing", "dto", "scoped-repository", "platform-provider"],
"homepage": "https://github.com/jkudish/graft",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Joey Kudish",
"email": "joey@jkudish.com"
}
],
"support": {
"issues": "https://github.com/jkudish/graft/issues",
"source": "https://github.com/jkudish/graft"
},
"require": {
"php": "^8.2",
"illuminate/http": "^11.0 || ^12.0 || ^13.0",
"illuminate/support": "^11.0 || ^12.0 || ^13.0",
"nesbot/carbon": "^3.0",
"symfony/process": "^7.0"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/ai": "^0.3",
"laravel/pint": "^1.0",
"orchestra/testbench": "^10.0",
"pestphp/pest": "^4.0"
},
"suggest": {
"laravel/ai": "Required to use the optional AI tools in Graft\\Ai\\Tools (^0.3)"
},
"autoload": {
"psr-4": {
"Graft\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Graft\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest --exclude-group=integration",
"test:integration": "vendor/bin/pest --group=integration",
"test:all": "vendor/bin/pest",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G",
"lint": "vendor/bin/pint",
"lint:check": "vendor/bin/pint --test"
},
"extra": {
"laravel": {
"providers": [
"Graft\\GraftServiceProvider"
],
"aliases": {
"Git": "Graft\\Facades\\Git",
"GitHub": "Graft\\Facades\\GitHub"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}