forked from duncanmcclean/simple-commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.92 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
65
66
{
"name": "doublethreedigital/simple-commerce",
"description": "A perfectly simple e-commerce addon for Statamic",
"license": "proprietary",
"autoload": {
"psr-4": {
"DoubleThreeDigital\\SimpleCommerce\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DoubleThreeDigital\\SimpleCommerce\\Tests\\": "tests"
}
},
"extra": {
"download-dist": {
"url": "https://github.com/duncanmcclean/simple-commerce/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
},
"statamic": {
"name": "Simple Commerce",
"description": "A perfectly simple e-commerce addon for Statamic"
},
"laravel": {
"providers": [
"DoubleThreeDigital\\SimpleCommerce\\ServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"laravel/framework": "^9.0",
"mollie/mollie-api-php": "^2.30.0",
"moneyphp/money": "^4.0",
"paypal/paypal-checkout-sdk": "^1.0",
"pixelfear/composer-dist-plugin": "^0.1.0",
"statamic/cms": "^3.3.48",
"stillat/proteus": "^1.0",
"stripe/stripe-php": "^7.7"
},
"require-dev": {
"doctrine/dbal": "^3.3",
"nunomaduro/collision": "^6.1",
"orchestra/testbench": "^7.0",
"spatie/ray": "^1.17",
"spatie/test-time": "^1.3"
},
"scripts": {
"lint": [
"php-cs-fixer fix ./src"
],
"test": [
"php -d memory_limit=-1 -d max_execution_time=0 ./vendor/bin/phpunit"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true
}
}
}