forked from mewebstudio/laravel-pos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 844 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
42
{
"name": "mews/laravel-pos",
"type": "package",
"description": "Laravel 5 Pos Package",
"keywords": ["laravel5 pos", "laravel5 sanal pos"],
"homepage": "https://github.com/mewebstudio/laravel-pos",
"license": "MIT",
"authors": [
{
"name": "Muharrem ERİN",
"email": "[email protected]",
"homepage": "https://github.com/mewebstudio",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3",
"illuminate/config": "~5.7|~5.8|^6.0|^7.0|^8.0",
"mews/pos": "^0.4.3"
},
"require-dev": {
"orchestra/testbench": "~3.4.0|~3.5.0",
"phpunit/phpunit": "5.*|^7.9"
},
"autoload": {
"psr-4": {
"Mews\\LaravelPos\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
],
"psr-4": {
"Mews\\Test\\": "tests/"
}
},
"minimum-stability": "stable"
}