-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 741 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 741 Bytes
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
{
"name": "stichoza/laravel-coderunner",
"description": "Add Laravel support to CodeRunner",
"keywords": ["laravel", "coderunner", "mac", "tinker", "tinkerwell", "psy", "shell"],
"license": "MIT",
"type": "library",
"bin": [
"bin/laravel-coderunner"
],
"authors": [
{
"name": "Levan Velijanashvili",
"email": "me@stichoza.com"
}
],
"require": {
"php": "^7.2|^8.0"
},
"scripts": {
"install-laravel": [
"rm -rf laravel",
"@composer create-project --prefer-dist laravel/laravel laravel"
],
"post-package-install": "@install-laravel",
"post-package-update": "@install-laravel"
}
}