-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.17 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
{
"autoload": {
"psr-4" :{
"Pdsinterop\\Solid\\": "src/"
}
},
"config": {
"bin-dir": "./bin",
"platform": {
"php": "7.3.11",
"ext-dom": "0.0.0",
"ext-mbstring": "0.0.0"
},
"sort-packages": true
},
"description": "Standalone Solid PubSub Server written in PHP by PDS Interop.",
"license": "MIT",
"name": "pdsinterop/solid-pubsub-server",
"require": {
"php": "~7.1",
"cboden/ratchet": "0.4.3",
"textalk/websocket": "1.4.1"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"scripts": {
"lint":"",
"serve-dev":"USER=alice PASSWORD=alice123 ENVIRONMENT=development php -S \"${HOST:-localhost}:${PORT:-8080}\" -t web/ web/index.php",
"serve-dev-docker":"bash ./bin/serve-docker-dev.sh",
"test":"phpunit"
},
"scripts-descriptions": {
"serve-dev": "Run the application with the internal PHP development server",
"serve-dev-docker": "Run the application with the docker image provided by the TestSuite repo.",
"test": "Run unit-test with PHPUnit"
},
"type": "project"
}