-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.33 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
{
"name": "robinlahtinen/cashew-kernel",
"description": "Core for the Cashew framework.",
"keywords": [
"core",
"kernel",
"cashew"
],
"homepage": "https://github.com/robinlahtinen/cashew-kernel",
"license": "MIT",
"authors": [
{
"name": "Robin Lahtinen",
"email": "[email protected]",
"role": "Lead developer"
}
],
"support": {
"email": "[email protected]"
},
"config": {
"allow-plugins": {
"robinlahtinen/*": true,
"vimeo/psalm": true,
"phpunit/phpunit": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Cashew\\": "Cashew/"
}
},
"require": {
"ext-pdo": "*",
"ext-json": "*",
"twig/twig": "^3.0",
"voku/html-min": "^4.4",
"nesbot/carbon": "^2.42",
"lcobucci/jwt": "^4.1",
"webonyx/graphql-php": "^14.9",
"ext-curl": "*",
"symfony/mailer": "^6.2"
},
"require-dev": {
"vimeo/psalm": "^3.12",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"psalm": "psalm --diff --diff-methods",
"test": "vendor/bin/phpunit"
},
"minimum-stability": "stable",
"prefer-stable": true
}