This repository was archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·58 lines (57 loc) · 1.45 KB
/
composer.json
File metadata and controls
executable file
·58 lines (57 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
{
"name": "beyondcode/laravel-tinker-server",
"description": "Tinker with your variables while working on your application.",
"keywords": [
"beyondcode",
"laravel-tinker-server"
],
"homepage": "https://github.com/beyondcode/laravel-tinker-server",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Marcel Pociot",
"email": "marcel@beyondco.de",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"clue/stdio-react": "^2.2",
"illuminate/support": "5.6.*|5.7.*|5.8.*|6.*",
"laravel/tinker": "^1.0",
"psy/psysh": "^0.9.9",
"react/socket": "^1.2"
},
"require-dev": {
"orchestra/testbench": "3.7.*",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"BeyondCode\\LaravelTinkerServer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BeyondCode\\LaravelTinkerServer\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"BeyondCode\\LaravelTinkerServer\\LaravelTinkerServerServiceProvider"
]
}
}
}