-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.57 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
60
61
62
63
64
65
{
"name": "nasqueron/notifications",
"description": "Nasqueron notifications center",
"keywords": [
"nasqueron",
"activemq",
"AMQP",
"notifications"
],
"license": "BSD-2-Clause",
"type": "project",
"require": {
"php": ">=8.1.0",
"laravel/framework": "^9.30.0",
"guzzlehttp/guzzle": "7.5.0",
"keruald/dockerhub": "^0.1.0",
"keruald/github": "^0.2.1",
"keruald/broker": "^0.5.0",
"keruald/mailgun": "^0.1.0",
"keruald/omnitools": "^0.8.0",
"netresearch/jsonmapper": "^1.1.1",
"sentry/sentry-laravel": "^3.2"
},
"require-dev": {
"laravel/browser-kit-testing": "^v6.3.0",
"mockery/mockery": "^1.5.0",
"nasqueron/codestyle": "^0.1.0",
"pdepend/pdepend": "^2.10",
"phan/phan": "^5.3",
"sebastian/phpcpd": "6.0.3",
"phploc/phploc": "7.0.2",
"phpmd/phpmd": "^2.12",
"phpspec/phpspec": "^7.2",
"phpunit/phpunit": "^9.5.20",
"rector/rector": "^0.14.2",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Nasqueron\\Notifications\\": "app/",
"Nasqueron\\Notifications\\Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"phpmd": [
"vendor/bin/phpmd app/ xml ruleset.xml"
],
"test": [
"phpunit --no-coverage"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"kylekatarnls/update-helper": true,
"php-http/discovery": true
}
}
}