-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.51 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.51 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
59
60
61
62
63
64
65
66
67
{
"name": "tempest/docs",
"type": "project",
"description": "Documentation website for the Tempest framework",
"repositories": [
],
"require": {
"tempest/framework": "^3.4",
"league/commonmark": "^2.8.0",
"symfony/yaml": "^7.4.1",
"spatie/yaml-front-matter": "^2.1.1",
"spatie/browsershot": "^5.2.0",
"assertchris/ellison": "^1.0.2"
},
"require-dev": {
"phpunit/phpunit": "^12.5.4",
"symfony/var-dumper": "^7.4.0",
"carthage-software/mago": "^1.0.3",
"rector/rector": "^2.3.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Tempest\\": "vendor/brendt/tempest/tests/"
}
},
"authors": [
{
"name": "Brent Roose",
"email": "brendt@stitcher.io"
}
],
"scripts": {
"post-autoload-dump": "@php ./tempest discovery:generate",
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"fmt": "vendor/bin/mago fmt",
"lint:fix": "vendor/bin/mago lint --fix --format-after-fix",
"lint": "vendor/bin/mago lint",
"qa": [
"composer fmt",
"composer lint:fix",
"composer lint",
"composer phpunit",
"bun run build",
"@php ./tempest static:generate",
"@php ./tempest static:clean",
"rm -rf public/build"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"config": {
"allow-plugins": {
"php-http/discovery": true,
"carthage-software/mago": true
}
}
}