-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 1.76 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
{
"name": "nmeri/suphle",
"type": "framework",
"description": "Opinionated PHP framework for building performant, extensible, and testable web applications",
"authors": [
{
"name": "Nmeri Alphonsus"
}
],
"autoload": {
"psr-4": {
"Suphle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Suphle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1",
"brianium/paratest": "*",
"bugsnag/bugsnag": "^3.0",
"fakerphp/faker": "^1.19",
"firebase/php-jwt": "^6.0",
"friendsofphp/proxy-manager-lts": "^1.0",
"guzzlehttp/guzzle": "^7.4",
"illuminate/container": "^9.0",
"illuminate/database": "^9.0",
"illuminate/events": "^9.0",
"illuminate/testing": "^9.0",
"illuminate/validation": "^9.0",
"illuminate/view": "^9.0",
"imagine/imagine": "^1.3",
"laravel/framework": "^9.0",
"nyholm/psr7": "^1.5",
"phpunit/phpunit": "9.6",
"predis/predis": "^2.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0.1",
"spiral/roadrunner": "^2.10",
"spiral/roadrunner-jobs": "^2.3",
"spiral/roadrunner-kv": "^2.1",
"symfony/mailer": "^6.0",
"symfony/process": "^6.0",
"symfony/psr-http-message-bridge": "^2.1",
"vimeo/psalm": "*",
"vlucas/phpdotenv": "*",
"wyrihaximus/json-throwable": "^4.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "dev-master",
"guidocella/eloquent-populator": "^3.0",
"rector/rector": "^0.14.6"
},
"repositories": [],
"extra": {},
"config": {
"sort-packages": true
},
"scripts": {
"post-create-project-cmd": [
"rr get-binary --location=./vendor/bin"
],
"test": [
"Composer\\Config::disableProcessTimeout", "phpunit"
],
"parallel-test": [
"Composer\\Config::disableProcessTimeout", "paratest"
]
}
}