-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
44 lines (44 loc) · 874 Bytes
/
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
{
"name": "jpkleemans/attribute-events",
"description": "🔥 Fire events on attribute changes of your Eloquent model",
"homepage": "https://attribute.events/",
"keywords": [
"laravel",
"eloquent",
"events",
"attributes",
"domain events",
"model events",
"ddd"
],
"license": "MIT",
"authors": [
{
"name": "Jan-Paul Kleemans",
"email": "jpkleemans@gmail.com"
}
],
"autoload": {
"psr-4": {
"Kleemans\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kleemans\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^11.3",
"illuminate/events": "^11.21",
"illuminate/database": "^11.21",
"friendsofphp/php-cs-fixer": "^3.62"
},
"scripts": {
"tests": "phpunit ./tests",
"lint": "php-cs-fixer fix"
}
}