forked from tastyigniter/ti-ext-cart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
89 lines (89 loc) · 2.75 KB
/
Copy pathcomposer.json
File metadata and controls
89 lines (89 loc) · 2.75 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "tastyigniter/ti-ext-cart",
"type": "tastyigniter-package",
"description": "Easily add a shopping cart to your site. The most powerful way to sell your menu items.",
"license": "MIT",
"authors": [
{
"name": "Sam Poyigi",
"email": "sam@sampoyigi.com"
}
],
"keywords": [
"tastyigniter",
"cart",
"online-food-ordering",
"ordering"
],
"require": {
"tastyigniter/core": "^v4.0",
"tastyigniter/ti-ext-automation": "^v4.0",
"tastyigniter/ti-ext-coupons": "^v4.0",
"tastyigniter/ti-ext-local": "^v4.0",
"tastyigniter/ti-ext-payregister": "^v4.0",
"tastyigniter/ti-ext-user": "^v4.0"
},
"require-dev": {
"igniterlabs/ti-ext-importexport": "v4.x-dev",
"larastan/larastan": "^3.0",
"laravel/pint": "^1.2",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^2.0",
"sampoyigi/testbench": "^1.0"
},
"autoload": {
"psr-4": {
"Igniter\\Cart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\Cart\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"code": "igniter.cart",
"name": "Cart",
"icon": {
"class": "fa fa-shopping-cart",
"color": "#FFF",
"backgroundColor": "#FF4900"
},
"homepage": "https://tastyigniter.com/marketplace/item/igniter-cart"
},
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"scripts": {
"test:lint": "vendor/bin/pint --test --ansi",
"test:lint-fix": "vendor/bin/pint --ansi",
"test:refactor": "vendor/bin/rector process --dry-run --ansi",
"test:refactor-fix": "vendor/bin/rector process --ansi",
"test:static": "vendor/bin/phpstan analyse --memory-limit=1056M --ansi",
"test:static-fix": "vendor/bin/phpstan --generate-baseline --memory-limit=1056M --ansi",
"test:pest": "vendor/bin/pest",
"test:coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
"test:type-coverage": "vendor/bin/pest --type-coverage --min=100",
"test": [
"@test:refactor",
"@test:static",
"@test:lint",
"@test:coverage"
]
},
"suggest": {
"igniterlabs/ti-ext-importexport": "For importing and exporting orders."
}
}