-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
56 lines (56 loc) · 1.13 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
{
"name": "extism/extism",
"description": "Make your software programmable. Run WebAssembly extensions in your app using the first off-the-shelf, universal plug-in system.",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"WebAssembly",
"plugin-system",
"runtime",
"plug-in",
"wasm",
"framework"
],
"authors": [
{
"name": "The Extism Authors",
"email": "[email protected]",
"homepage": "https://extism.org"
},
{
"name": "Dylibso, Inc.",
"email": "[email protected]",
"homepage": "https://dylibso.com"
}
],
"require": {
"php": "^7.4 || ^8"
},
"suggest": {},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Extism\\": "src/"
},
"psr-0": {
"LibExtism": "src"
}
},
"autoload-dev": {
"psr-4": {
"Extism\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {},
"scripts": {},
"scripts-descriptions": {},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3.10"
}
}