-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.93 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.93 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "boson-php/app",
"type": "project",
"description": "The skeleton application for the Boson",
"keywords": ["boson", "boson-php", "application", "skeleton"],
"license": "MIT",
"require": {
"php": "^8.4",
"boson-php/http-static-provider": "^0.20",
"boson-php/runtime": "^0.20",
"boson-php/webview-ext-web-components": "^0.20"
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"require-dev": {
"boson-php/compiler": "^0.20",
"filp/whoops": "^2.18",
"friendsofphp/php-cs-fixer": "^3.88",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.4",
"symfony/var-dumper": "^6.4|^7.0|^8.0"
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"scripts-aliases": {
"test:unit": ["unit"],
"test:integration": ["integration"],
"linter:check": ["linter", "stan"],
"phpcs:check": ["phpcs", "cs", "psr", "per"]
},
"scripts": {
"post-create-project-cmd": "boson init",
"compile": "boson compile",
"test": ["@test:unit", "@test:integration", "@test:feature"],
"test:unit": "phpunit --testsuite=unit --testdox",
"test:feature": "phpunit --testsuite=feature --testdox",
"test:integration": "phpunit --testsuite=integration --testdox",
"linter:check": "phpstan analyse --configuration phpstan.neon --memory-limit 256M",
"linter:baseline": "@linter:check --generate-baseline",
"phpcs:check": "@phpcs:fix --dry-run",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}