-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
75 lines (75 loc) · 2.29 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
67
68
69
70
71
72
73
74
75
{
"$schema": "https://getcomposer.org/schema.json",
"name": "sproutcms/cms",
"description": "Enterprise content management and framework",
"keywords": ["sprout", "cms", "content-management-system", "framework", "mysql"],
"license": "GPL-2.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Sprout\\": "src/sprout"
},
"files": [
"src/sprout/preboot.php"
]
},
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-zip": "*",
"davechild/textstatistics": "^1.0",
"ezyang/htmlpurifier": "^4.17",
"guzzlehttp/guzzle": "^7.9",
"karmabunny/kb": "^3.38",
"karmabunny/pdb": ">=0.29|<1.0",
"karmabunny/rdb": "^1.20",
"karmabunny/router": "^2.7.12",
"karmabunny/visor": "^1.0",
"nyholm/psr7": "^1.6",
"openai-php/client": "^0.10.1",
"phpmailer/phpmailer": "^6.5",
"psr/http-message": "^1.0",
"setasign/tfpdf": "^1.32",
"symfony/browser-kit": "^7.1",
"symfony/css-selector": "^7.1",
"symfony/dom-crawler": "^7.1",
"symfony/http-client": "^7.1",
"twig/twig": "^3.3",
"vlucas/phpdotenv": "^3",
"web-token/jwt-framework": "^4.0"
},
"require-dev": {
"karmabunny/nstrack": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9"
},
"extra": {
"locals": {
"karmabunny/kb": "../kbphp",
"karmabunny/pdb": "../kbpdb",
"karmabunny/rdb": "../kbrdb",
"karmabunny/nstrack": "../nstrack"
}
},
"scripts": {
"compat": "phpcs -p --standard=phpcs.xml --colors --extensions=php",
"analyse": "phpstan analyse -c phpstan.neon",
"test": "phpunit --testdox --configuration phpunit.xml.dist",
"nstrack": "nstrack",
"patch-locals": "@php tools/patch_locals.php"
}
}