-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.23 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
{
"name": "bullsoft/easynotion",
"description": "Notion SDK",
"keywords": [
"notion",
"notion sdk",
"notion sdk for php",
"notion-sdk",
"sdk"
],
"license": "MIT",
"authors": [
{
"name": "Weigang Gu",
"email": "guweigang@bullsoft.org"
}
],
"require": {
"php": ">=8.1.0",
"ext-fileinfo": "*",
"ext-openssl": "*",
"ext-simplexml": "*",
"ext-sodium": "*",
"ext-libxml": "*",
"ext-curl": "*",
"monolog/monolog": "^2.2",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.5.0",
"brainmaestro/composer-git-hooks": "^2.8",
"mikey179/vfsstream": "^1.6",
"mockery/mockery": "^1.4.4",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.10",
"pestphp/pest": "^1.21"
},
"autoload": {
"psr-4": {
"EasyNotion\\": "src/EasyNotion/"
}
},
"autoload-dev": {
"psr-4": {
"EasyNotion\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
}
}