-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.23 KB
/
Copy pathcomposer.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "cfx/cffreelancer",
"description": "Client portal (Tabler UI) for Kirby with Stripe payments",
"type": "kirby-plugin",
"require": {
"php": ">=8.1",
"stripe/stripe-php": "^17.0",
"getkirby/composer-installer": "^1.2"
},
"suggest": {
"ext-intl": "Localized currency and date formatting.",
"ext-mbstring": "Multibyte string handling.",
"ext-json": "JSON encoding/decoding.",
"ext-curl": "Faster HTTP requests for webhooks/integrations."
},
"autoload": {
"psr-4": {
"Cfx\\Cffreelancer\\": "classes/"
}
},
"autoload-dev": {
"psr-4": {
"Cfx\\Cffreelancer\\Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"lint": "php -l site/plugins/cffreelancer/index.php",
"stan": "phpstan analyse site/plugins/cffreelancer --level=max",
"test": "phpunit",
"fmt": "php-cs-fixer fix --allow-risky=yes"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"kirby-cms-path": false
},
"minimum-stability": "stable",
"prefer-stable": true
}