-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.34 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "papi-ai/papi-core",
"description": "Core classes for PapiAI - A simple but powerful PHP library for building AI agents",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcello Duarte",
"email": "marcello.duarte@gmail.com"
}
],
"require": {
"php": "^8.2"
},
"suggest": {
"psr/log": "Required for LoggingMiddleware (^3.0)",
"psr/simple-cache": "Required for CacheMiddleware (^3.0)"
},
"require-dev": {
"pestphp/pest": "^3.0",
"mockery/mockery": "^1.6",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^6.0",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0"
},
"autoload": {
"psr-4": {
"PapiAI\\Core\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PapiAI\\Core\\Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"test:coverage": "XDEBUG_MODE=coverage pest --coverage --min=75",
"lint": "php-cs-fixer fix --dry-run --diff",
"lint:fix": "php-cs-fixer fix",
"analyse": "psalm",
"ci": ["@lint", "@analyse", "@test:coverage"]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable"
}