-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.68 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
{
"name": "tempest/app",
"type": "project",
"require": {
"tempest/framework": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5.8",
"carthage-software/mago": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-create-project-cmd": [
"@php ./vendor/bin/tempest install framework -f",
"@php ./tempest discovery:generate --no-interaction",
"@php ./tempest key:generate"
],
"post-autoload-dump": [
"@php ./vendor/bin/tempest discovery:generate --no-interaction"
],
"fmt": "vendor/bin/mago fmt",
"lint": "vendor/bin/mago lint --reporting-format=rich && vendor/bin/mago lint --fix --format-after-fix",
"analyse": "vendor/bin/mago analyse",
"test": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"qa": [
"composer fmt",
"composer lint",
"composer analyse",
"composer test"
],
"github:lint": "vendor/bin/mago lint --potentially-unsafe --minimum-fail-level=note --reporting-format=github",
"github:fmt": "vendor/bin/mago fmt --check",
"github:analyse": "vendor/bin/mago analyse",
"github:test": "vendor/bin/phpunit"
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"carthage-software/mago": true
}
}
}