-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.21 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"name": "codev/support-chat",
"description": "Standalone PHP live support chat optimized for shared hosting.",
"type": "project",
"require": {
"php": ">=8.1",
"slim/slim": "^4.12",
"slim/psr7": "^1.6",
"nyholm/psr7": "^1.8",
"http-interop/http-factory-guzzle": "^1.2",
"php-di/php-di": "^7.0",
"php-di/slim-bridge": "^3.4",
"vlucas/phpdotenv": "^5.6",
"firebase/php-jwt": "^6.10"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"pestphp/pest": "^2.36"
},
"autoload": {
"psr-4": {
"Codev\\Core\\": "core/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"secure-http": false,
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-install-cmd": [
"@composer dump-autoload -o"
],
"post-update-cmd": [
"@composer dump-autoload -o"
],
"test": [
"@php vendor/bin/pest --colors=always"
],
"test:unit": [
"@php vendor/bin/pest --colors=always --testsuite=unit"
],
"test:integration": [
"@php vendor/bin/pest --colors=always --testsuite=integration"
]
}
}