-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 914 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
{
"name": "jasperweyne/unwasm",
"type": "library",
"description": "Transpile WebAssembly to PHP and run it",
"keywords": ["wasm","webassembly"],
"homepage": "https://github.com/jasperweyne/unwasm",
"license": "Apache-2.0",
"authors": [
{
"name": "Jasper Weyne",
"email": "[email protected]"
}
],
"scripts": {
"fix": [
"php-cs-fixer fix src"
],
"test": [
"php vendor/bin/phpunit --testdox"
],
"analyse": [
"./vendor/bin/phpstan analyse --memory-limit 2G"
]
},
"autoload": {
"psr-4": {"UnWasm\\": "src/"}
},
"require": {
"php": ">=7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"phpunit/phpunit": "^9.5",
"symfony/finder": "^5.4",
"phpstan/phpstan": "^1.5"
}
}