-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.34 KB
/
composer.json
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
{
"name": "albertcht/notion-ai",
"description": "Api Client of Notion AI in PHP",
"keywords": [
"notion-ai",
"openai",
"gpt3",
"php",
"api",
"api client"
],
"homepage": "https://github.com/albertcht/notion-ai",
"license": "MIT",
"authors": [
{
"name": "Albert Chen",
"email": "albert.cht@gmail.com",
"role": "Software Architect"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.0",
"ramsey/uuid": "^4.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.5",
"pestphp/pest": "^1.20",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"AlbertCht\\NotionAi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AlbertCht\\NotionAi\\Tests\\": "tests"
}
},
"scripts": {
"test:unit": "pest --colors=always",
"test:types": "phpstan analyse --ansi",
"test": [
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}