-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.73 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.73 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": "tyler/app",
"type": "website",
"description": "PHP Website demonstrating ionphp framework",
"license": "MIT",
"authors": [
{
"name": "Tyler Sriver",
"email": "tyler.sriver@gmail.com"
}
],
"require": {
"php": "^8.2",
"franzl/whoops-middleware": "^2.0",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.0",
"tyler/envase": "^0.1.3",
"tyler/limon": "^0.3.0",
"tyler/mira": "^0.1.1",
"tyler/ruta": "^0.1.2"
},
"require-dev": {
"mockery/mockery": "^1.5",
"pestphp/pest": "^2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.8",
"phpstan/phpstan": "^1.4",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:8080 -t public/"
],
"test": [
"composer dump-autoload -o",
"@sniff",
"@lint",
"@stan",
"@md",
"@unit"
],
"lint": "vendor/bin/parallel-lint src",
"unit": "pest --coverage",
"github-action-phpunit": "phpunit --no-coverage",
"stan": "phpstan analyse src --memory-limit=-1",
"sniff": "php vendor/squizlabs/php_codesniffer/bin/phpcs -s --colors src/",
"fix": "php vendor/squizlabs/php_codesniffer/bin/phpcbf src/",
"md": "php vendor/phpmd/phpmd/src/bin/phpmd src/ ansi mdruleset.xml"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"bin": []
}