-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.3 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"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"
],
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
"fmt": "vendor/bin/mago fmt",
"lint": "vendor/bin/mago lint --fix --format-after-fix",
"qa": [
"composer fmt",
"composer phpunit",
"composer lint"
]
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"php-http/discovery": true,
"carthage-software/mago": true
}
}
}