-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
86 lines (86 loc) · 2.48 KB
/
composer.json
File metadata and controls
86 lines (86 loc) · 2.48 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "promptphp/deck",
"description": "Deck is a Laravel and PHP package for versioned, file-based AI prompt management with variable interpolation, performance tracking, A/B testing, and optional Laravel AI SDK integration.",
"type": "library",
"homepage": "https://github.com/promptphp/deck",
"license": "MIT",
"support": {
"issues": "https://github.com/promptphp/deck/issues",
"source": "https://github.com/promptphp/deck"
},
"authors": [
{
"name": "Victor Ukam",
"email": "victorjohnukam@gmail.com"
}
],
"keywords": [
"promptphp",
"deck",
"prompt-deck",
"ai",
"prompts",
"prompt-management",
"versioned-prompts",
"file-based-prompts",
"variable-interpolation",
"performance-tracking",
"ab-testing",
"laravel",
"laravel-ai",
"laravel-package"
],
"require": {
"php": "^8.2",
"sebastian/diff": "^7.0.0",
"nesbot/carbon": "^3.0",
"illuminate/container": "^11.0|^12.0|^13.0",
"illuminate/database": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"orchestra/testbench": "^10.0|^11.0",
"pestphp/pest": "^4.3",
"pestphp/pest-plugin-laravel": "^4.0",
"laravel/pint": "^1.27"
},
"suggest": {
"laravel/ai": "Enables deep integration with Laravel AI SDK agents (automatic instructions loading, prompt version tracking in conversations)."
},
"autoload": {
"psr-4": {
"PromptPHP\\Deck\\": "src/",
"PromptPHP\\Deck\\Database\\Factories\\": "src/database/factories/",
"PromptPHP\\Deck\\Database\\Seeders\\": "src/database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"PromptPHP\\Deck\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"PromptPHP\\Deck\\Providers\\DeckServiceProvider"
],
"aliases": {
"PromptDeck": "PromptPHP\\Deck\\Facades\\Deck"
}
}
},
"scripts": {
"test": [
"vendor/bin/pint --test",
"vendor/bin/pest"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}