-
-
Notifications
You must be signed in to change notification settings - Fork 74
/
composer.json
36 lines (36 loc) · 870 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
{
"name": "sofa/hookable",
"description": "Laravel Eloquent hooks system.",
"license": "MIT",
"support": {
"issues": "https://github.com/jarektkaczyk/hookable/issues",
"source": "https://github.com/jarektkaczyk/hookable"
},
"keywords": ["eloquent", "laravel"],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "[email protected]",
"homepage": "https://softonsofa.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"illuminate/database": ">=5.4"
},
"require-dev": {
"kahlan/kahlan": "~1.1"
},
"autoload": {
"psr-4": {
"Sofa\\Hookable\\": "src/"
}
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"test": "vendor/bin/kahlan"
}
}