-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.11 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
{
"name": "malyusha/path-history",
"description": "Laravel package that allows you to create nested/human-readable paths(urls) for your eloquent models from attributes.",
"keywords": ["laravel", "slug", "model-url", "url", "path", "link", "sluggable", "SEO"],
"type": "library",
"require": {
"php": "^7.0",
"illuminate/support": "^5.4 || ^5.5 || ^5.6 || ^5.7",
"illuminate/database": "^5.4 || ^5.5 || ^5.6 || ^5.7",
"illuminate/routing": "^5.4 || ^5.5 || ^5.6 || ^5.7"
},
"require-dev": {
"orchestra/testbench": "3.5.*",
"phpunit/phpunit": "^6.3|^7.0",
"mockery/mockery": "^1.2"
},
"license": "MIT",
"authors": [
{
"name": "Igor Malyuk",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Malyusha\\PathHistory\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Malyusha\\PathHistory\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Malyusha\\PathHistory\\PathHistoryServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}