This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 2 KB
/
composer.json
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
68
69
70
71
72
73
74
75
{
"name": "mressex/cubex-base",
"description": "Playground for Learning Cubex",
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Kyle Essex",
"email": "kylegavinessex@hotmail.com"
}
],
"require": {
"php": ">=8.1",
"ext-apcu": "*",
"cubex/api-foundation": "^0.5.0",
"cubex/framework": "dev-viewmodel as 4.19.0",
"cubex/sitemap": "^0.2.0",
"mressex/cache": "^0.5.1",
"mressex/cubex-cli": "^0.1.0",
"mressex/cubex-translate": "^0.1.0",
"packaged-ui/bem-component": "^1.2.2",
"packaged-ui/pagelets": "^2.3.6",
"packaged/dal": "^1.18.1",
"packaged/dal-schema": "dev-master",
"packaged/dispatch": "dev-master",
"packaged/enum": "^1.4.0",
"packaged/form": "^5.1.0",
"packaged/glimpse": "^2.8.0",
"packaged/http": "^1.21.0"
},
"require-dev": {
"ext-json": "*",
"filp/whoops": "2.15.3",
"packaged/codestandards": "^1.0.2",
"phpstan/phpstan": "^1.10.33",
"phpunit/phpunit": "^10.3.3",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7.2",
"statickidz/php-google-translate-free": "^1.2.1"
},
"minimum-stability": "alpha",
"autoload": {
"psr-4": {
"CubexBase\\Application\\": "src",
"CubexBase\\Transport\\": "transport"
}
},
"autoload-dev": {
"psr-4": {
"CubexBase\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "auto",
"sort-packages": true
},
"repositories": [
{
"type": "git",
"url": "https://github.com/packaged/dal-schema.git"
}
],
"scripts": {
"check": [
"@composer-validate",
"@codesniffer-check",
"@lint"
],
"codesniffer-check": "vendor/bin/phpcs --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1",
"composer-validate": "@composer validate --no-check-all --strict",
"lint": "vendor/bin/phpstan analyse -l 5 src tests -c phpstan.neon",
"test": "./vendor/bin/phpunit"
}
}