-
Notifications
You must be signed in to change notification settings - Fork 42
/
composer.json
42 lines (42 loc) · 1001 Bytes
/
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
{
"name": "wasm/wasm",
"description": "A complete and mature WebAssembly runtime for PHP based on Wasmer",
"type": "library",
"require": {
"ext-wasm": "^1.0.0"
},
"require-dev": {
"phpdocumentor/phpdocumentor": "@dev",
"phpdocumentor/flyfinder": "@dev",
"friendsofphp/php-cs-fixer": "@dev",
"phpunit/phpunit": "@dev"
},
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Wasmer Engineering Team",
"email": "[email protected]"
}
],
"config": {
"platform": {
"ext-wasm": "1.0.0"
},
"cache-dir": "target/cache/composer"
},
"autoload": {
"psr-4": {
"Wasm\\": "src"
}
},
"replace": {
"php-wasm/php-wasm": "*"
},
"autoload-dev": {
"psr-4": {
"Wasm\\Tests\\": "tests/unit",
"Wasm\\Examples\\": "tests/examples"
}
}
}