-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
44 lines (44 loc) · 1.01 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
{
"name": "typerocket/typerocket",
"description": "TypeRocket for WordPress.",
"keywords": ["framework", "typerocket", "wordpress"],
"license": "GPL-3.0-or-later",
"homepage": "https://typerocket.com",
"repositories": {
"wpackagist": {
"type": "composer",
"url": "https://wpackagist.org"
}
},
"authors": [
{
"name": "Robojuice",
"homepage": "https://robojuice.com",
"role": "Creator"
}
],
"support": {
"docs": "https://typerocket.com/docs/v6/"
},
"require": {
"php": "^8.2",
"typerocket/core": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"files": [
"helpers.php"
]
},
"scripts": {
"post-create-project-cmd": [
"php galaxy config:seed"
],
"post-update-cmd": [
"php galaxy core:update"
]
},
"minimum-stability": "stable"
}