-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
87 lines (87 loc) · 2.27 KB
/
composer.json
File metadata and controls
87 lines (87 loc) · 2.27 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
{
"name": "ophelios/continuum",
"description": "On-chain chain-of-custody protocol that keeps digital and physical evidence verifiable, encrypted, and traceable through every handoff.",
"license": "MIT",
"authors": [
{
"name": "David Tucker",
"email": "david.tucker@ophelios.com"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/ophelios-studio/pulsar-tabler.git"
},
{
"type": "vcs",
"url": "https://github.com/ophelios-studio/pulsar-components.git"
},
{
"type": "vcs",
"url": "https://github.com/ophelios-studio/pulsar-forms.git"
},
{
"type": "vcs",
"url": "https://github.com/ophelios-studio/pulsar-mailer.git"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.4",
"composer/composer": "^2.0",
"ophelios/zephyrus": "dev-main",
"ophelios/pulsar-tabler": "dev-main",
"ophelios/pulsar-components": "dev-main",
"ophelios/pulsar-forms": "dev-main",
"ophelios/pulsar-mailer": "dev-main",
"ophelios/php-ethereum-ens": "0.1.*",
"ophelios/php-lighthouse-storage": "dev-main",
"kornrunner/keccak": "^1.1",
"simplito/elliptic-php": "^1.0",
"usarise/identicon": "^0.8.2",
"web3p/web3.php": "0.3.2",
"web3p/ethereum-tx": "0.4.3",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-zip": "*",
"ext-posix": "*",
"ext-curl": "*",
"ext-intl": "*",
"ext-ssh2": "*",
"ext-gd": "*",
"ext-libxml": "*",
"ext-dom": "*",
"ext-gmp": "*"
},
"require-dev": {
"phpunit/phpunit": "10.*",
"tracy/tracy": "^2.10"
},
"autoload": {
"psr-4": {
"Models\\": "app/Models",
"Controllers\\": "app/Controllers",
"Scripts\\": "scripts"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"publish": "Scripts\\Publisher::publish",
"post-install-cmd": [
"Scripts\\Publisher::publish"
],
"post-update-cmd": [
"Scripts\\Publisher::publish"
],
"test": "vendor/bin/phpunit --stderr",
"latte-cache": "XDEBUG_MODE=off php bin/latte_cache",
"xdebug-enable": "bash bin/docker-xdebug.sh enable webserver",
"xdebug-disable": "bash bin/docker-xdebug.sh disable webserver"
}
}