forked from INTER-Mediator/INTER-Mediator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (111 loc) · 2.97 KB
/
composer.json
File metadata and controls
111 lines (111 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "inter-mediator/inter-mediator",
"version": "15",
"time": "2026-04-05",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-curl": "*",
"ext-xml": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-posix": "*",
"mouf/nodejs-installer": ">=1",
"inter-mediator/fmdataapi": ">=36",
"tecnickcom/tcpdf": ">=6.9",
"aws/aws-sdk-php": ">=3",
"simplesamlphp/simplesamlphp": ">=2",
"matthiasmullie/minify": ">=1.3",
"msyk/dropbox-api-shortlivedtoken": ">=5",
"league/csv": ">=9",
"pragmarx/google2fa": "^9",
"symfony/mailer": "^7.2.0",
"symfony/amazon-mailer": "^7.4.0",
"symfony/google-mailer": "^7.4.0",
"symfony/mime": "^7.4.0",
"symfony/yaml": ">=6.4",
"web-token/jwt-framework": ">=3.4",
"web-auth/webauthn-lib": "*"
},
"extra": {
"mouf": {
"nodejs": {
"version": "^22",
"includeBinInPath": true
}
}
},
"require-dev": {
"phpunit/phpunit": "^10 || ^11",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": {
"INTERMediator\\": "src/php"
}
},
"description": "The INTER-Mediator is framework for database-driven web application.",
"type": "library",
"keywords": [
"framework",
"declarative",
"rapid-development",
"binding"
],
"homepage": "https://inter-mediator.com",
"license": "MIT",
"authors": [
{
"name": "INTER-Mediator Directive Committee",
"homepage": "https://inter-mediator.org/"
}
],
"support": {
"community-jp": "https://www.facebook.com/groups/233378356708157/",
"community-en": "https://www.facebook.com/groups/254446237922985/",
"source": "https://github.com/INTER-Mediator/INTER-Mediator",
"manual": "https://inter-mediator.info/"
},
"scripts": {
"phpstan": "./vendor/bin/phpstan analyse -c ./spec/phpstan.neon --memory-limit=2048M",
"test": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./spec/INTER-Mediator-UnitTest/phpunit.xml"
],
"test-fms": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./spec/INTER-Mediator-UnitTest/phpunit-fms.xml --process-isolation"
],
"jest": [
"./node_modules/.bin/jest --config ./spec/jest-test-suite/jest.config.js"
],
"wdio-test": [
"cd spec/run;npm run wdio"
],
"clear": [
"rm -rf node_modules vendor"
],
"post-update-cmd": [
"./vendor/bin/npm ci",
"rm -f __Did_you_run_composer_update.txt"
],
"post-install-cmd": [
"./vendor/bin/npm ci",
"rm -f __Did_you_run_composer_update.txt"
]
},
"config": {
"allow-plugins": {
"simplesamlphp/composer-module-installer": true,
"mouf/nodejs-installer": true,
"simplesamlphp/composer-xmlprovider-installer": true
}
},
"github-oauth": {
"github.com": "token"
}
}