-
Notifications
You must be signed in to change notification settings - Fork 266
/
composer.json
92 lines (92 loc) · 2.41 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "beyondcode/expose",
"type": "project",
"description": "Create public URLs for local sites through any firewall and VPN.",
"keywords": [
"expose",
"tunnel",
"ngrok"
],
"homepage": "https://sharedwithexpose.com",
"license": "MIT",
"authors": [
{
"name": "Marcel Pociot",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"laravel-zero/phar-updater": "^1.2"
},
"require-dev": {
"cboden/ratchet": "dev-master",
"clue/block-react": "^1.4",
"clue/reactphp-sqlite": "dev-modular-worker-for-phar-support",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^1.7",
"illuminate/log": "^9.0",
"illuminate/http": "^9.0",
"illuminate/pipeline": "^9.0",
"illuminate/validation": "^9.0",
"laminas/laminas-http": "^2.13",
"laravel-zero/framework": "^9.0",
"mockery/mockery": "^1.4.2",
"octoper/cuzzle": "dev-master",
"nikic/php-parser": "^v4.10",
"nyholm/psr7": "^1.3",
"phpunit/phpunit": "^9.4.3",
"ratchet/pawl": "^0.3.5",
"react/http": "^1.1.0",
"react/socket": "^1.6",
"react/stream": "^1.1.1",
"riverline/multipart-parser": "^2.0",
"symfony/expression-language": "^5.2",
"symfony/http-kernel": "^6.0",
"symfony/psr-http-message-bridge": "^2.0",
"twig/twig": "^3.1"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"repositories": [
{
"type": "git",
"url": "https://github.com/seankndy/reactphp-sqlite"
},
{
"type": "git",
"url": "https://github.com/beyondcode/Ratchet"
},
{
"type": "git",
"url": "https://github.com/filkaris/cuzzle"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"builds/expose"
],
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
]
}
}