-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.01 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "utopia-php/messaging",
"description": "A simple, light and advanced PHP messaging library",
"type": "library",
"keywords": ["php","messaging", "upf", "utopia", "utopia-php", "library"],
"license": "MIT",
"minimum-stability": "stable",
"scripts": {
"test": "./vendor/bin/phpunit",
"lint": "./vendor/bin/pint --preset psr12 --test",
"format": "./vendor/bin/pint --preset psr12",
"analyse": "./vendor/bin/phpstan analyse --memory-limit=2G --level=6 src tests"
},
"autoload": {
"psr-4": {
"Utopia\\Messaging\\": "src/Utopia/Messaging"
}
},
"autoload-dev": {
"psr-4": {
"Utopia\\Tests\\": "tests/Messaging"
}
},
"require": {
"php": ">=8.0.0",
"ext-curl": "*",
"ext-openssl": "*",
"phpmailer/phpmailer": "6.9.1",
"giggsey/libphonenumber-for-php-lite": "9.0.23"
},
"require-dev": {
"phpunit/phpunit": "11.*",
"laravel/pint": "1.*",
"phpstan/phpstan": "1.*"
},
"config": {
"platform": {
"php": "8.3"
}
}
}