This repository has been archived by the owner on Aug 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
64 lines (64 loc) · 1.64 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
{
"name": "okipa/laravel-bootstrap-table-list",
"description": "Bootstrap table list generator for Laravel.",
"type": "library",
"keywords": [
"okipa",
"package",
"laravel",
"bootstrap",
"php",
"table",
"list",
"entities",
"generate",
"generator",
"generation",
"html"
],
"homepage": "https://github.com/Okipa/laravel-bootstrap-table-list",
"license": "MIT",
"authors": [
{
"name": "Arthur LORENT",
"email": "arthur.lorent@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"illuminate/support": "~5.0",
"okipa/laravel-html-helper": "^1.0"
},
"require-dev": {
"orchestra/testbench": "^3.6",
"mockery/mockery": "^1.2",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"Okipa\\LaravelBootstrapTableList\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Okipa\\LaravelBootstrapTableList\\Test\\": "tests"
}
},
"scripts": {
"test": [
"vendor/bin/phpcbf",
"vendor/bin/phpcs",
"phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"Okipa\\LaravelBootstrapTableList\\TableListServiceProvider"
]
}
},
"minimum-stability": "stable",
"abandoned": "This package is abandoned and has been replaced by https://github.com/Okipa/laravel-table. Only bug fixes will be merged. Please consider moving to the new package."
}