-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
{
"name": "konekt/customer",
"description": "Customer handling library for Laravel (Concord module)",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": ["laravel", "concord", "customer"],
"license": "MIT",
"authors": [
{
"name": "Attila Fulop",
"homepage": "https://github.com/fulopattila122"
}
],
"support": {
"issues": "https://github.com/artkonekt/customer"
},
"require": {
"php": "^8.1",
"ext-pdo": "*",
"konekt/concord": "^1.13",
"konekt/enum": "^4.1",
"konekt/user": "^3.0",
"konekt/address": "^3.0",
"konekt/laravel-migration-compatibility": "^1.6",
"laravel/framework": "^10.0|^11.0"
},
"require-dev": {
"ext-sqlite3": "*",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit" : "^10.0",
"mockery/mockery": "^1.6.1"
},
"autoload": {
"psr-4": { "Konekt\\Customer\\": "src"}
},
"autoload-dev": {
"psr-4": {
"Konekt\\Customer\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
}
}