forked from fenos/Notifynder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (40 loc) · 858 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
{
"name": "fenos/notifynder",
"description": "Management system of internal notifications for Laravel 5.*",
"keywords": ["notifications", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Fabrizio Fenoglio",
"email": "fabri_feno@yahoo.it",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"illuminate/support": "5.*"
},
"require-dev": {
"laravel/framework": "5.0.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"laracasts/testdummy": "~2.0",
"orchestra/testbench": "3.0.*"
},
"autoload": {
"classmap": [
],
"psr-4": {
"Fenos\\Notifynder\\": "src/Notifynder"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCaseDB.php"
],
"psr-4": {
"Fenos\\Tests\\": "tests/models"
}
},
"minimum-stability": "stable"
}