-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 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
{
"name": "phant/notifier",
"description": "Manage notifications easily",
"license": "MIT",
"keywords": ["notification manager", "notification component", "notification service", "notification sender", "notifier manager", "notifier component", "notifier service", "notifier sender"],
"authors": [
{
"name": "Lenny ROUANET",
"email": "[email protected]"
}
],
"config": {
"vendor-dir": ".package"
},
"require": {
"php": ">=8.1",
"phant/data-structure": "4.*",
"phant/email-sender": "2.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "3.*",
"phpstan/phpstan": "1.*",
"phpunit/phpunit": "9.*"
},
"scripts": {
"lint": ".package/bin/php-cs-fixer fix ./ --rules=@PSR12",
"analyse": ".package/bin/phpstan analyse component",
"test": ".package/bin/phpunit test --testdox",
"coverage": "XDEBUG_MODE=coverage .package/bin/phpunit"
},
"autoload": {
"psr-4": {
"Phant\\Notifier\\": "component/"
}
},
"autoload-dev": {
"psr-4": {
"Fixture\\": "fixture",
"Test\\": "test"
}
}
}