-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
66 lines (66 loc) · 1.77 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": "remp/crm-skeleton",
"description": "REMP - CRM Skeleton",
"type": "project",
"homepage": "https://remp2030.com",
"license": "MIT",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "extensions/*",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.2",
"remp/crm-admin-module": "^3.6",
"remp/crm-api-module": "^3.6",
"remp/crm-application-module": "^3.6",
"remp/crm-dashboard-module": "^3.6",
"remp/crm-gifts-module": "^3.6",
"remp/crm-invoices-module": "^3.6",
"remp/crm-issues-module": "^3.6",
"remp/crm-onboarding-module": "^3.6",
"remp/crm-payments-module": "^3.6",
"remp/crm-print-module": "^3.6",
"remp/crm-products-module": "^3.6",
"remp/crm-remp-mailer-module": "^3.6",
"remp/crm-salesfunnel-module": "^3.6",
"remp/crm-scenarios-module": "^3.6",
"remp/crm-segment-module": "^3.6",
"remp/crm-stripe-module": "^3.6",
"remp/crm-subscriptions-module": "^3.6",
"remp/crm-upgrades-module": "^3.6",
"remp/crm-users-module": "^3.6"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.4.10",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-nette": "^1.2",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.0",
"slevomat/coding-standard": "^8.0",
"phpstan/phpdoc-parser": "^1.6",
"spaze/phpstan-disallowed-calls": "^2.5.0",
"squizlabs/php_codesniffer": "^3.7.0"
},
"scripts": {
"post-autoload-dump": [
"Crm\\ApplicationModule\\Application\\ComposerScripts::postAutoloadDump"
]
}
}