-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (54 loc) · 1.37 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (54 loc) · 1.37 KB
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
{
"name": "rainbow1997/testback",
"description": "A test package for using backpack addons",
"license": "MIT",
"authors": [
{
"name": "Mostafa Jamali",
"email": "personal@mostafajamali.ir",
"homepage": "https://dornica.net"
}
],
"homepage": "https://github.com/rainbow1997/testback",
"keywords": [
"Laravel", "Backpack", "Backpack for Laravel", "Backpack Addon", "Testback"
],
"repositories": [
{
"type": "composer",
"url": "https://repo.backpackforlaravel.com/"
}
],
"require": {
"illuminate/support": "~8|~9",
"backpack/crud": "^5.4",
"backpack/editable-columns": "^2.0",
"backpack/pro": "^1.2",
"intervention/image" : "^2.7",
"backpack/filemanager": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6"
},
"autoload": {
"psr-4": {
"Rainbow1997\\Testback\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rainbow1997\\Testback\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --testdox"
},
"extra": {
"laravel": {
"providers": [
"Rainbow1997\\Testback\\AddonServiceProvider"
]
}
}
}