-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
50 lines (50 loc) · 1.67 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
{
"autoload": {
"psr-4" :{
"Pdsinterop\\Solid\\": "src/"
}
},
"config": {
"bin-dir": "./bin",
"sort-packages": true
},
"description": "Standalone Solid Server written in PHP by PDS Interop.",
"license": "MIT",
"name": "pdsinterop/solid-server",
"require": {
"php": "^7.3",
"ext-dom": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"codercat/jwk-to-pem": "^1.1",
"defuse/php-encryption": "^2.3",
"laminas/laminas-diactoros": " ^2.8",
"laminas/laminas-httphandlerrunner": "^1.5",
"lcobucci/jwt": "3.3.3",
"league/container": "^3.4",
"league/flysystem": "^1.1",
"league/oauth2-server": "^8.1",
"league/route": "^4.5",
"pdsinterop/flysystem-rdf": "^0.3",
"pdsinterop/solid-auth": "^0.6",
"pdsinterop/solid-crud": "^0.3",
"php-http/httplug": "^2.2",
"phptal/phptal": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "^8.5 | ^9.5"
},
"scripts": {
"lint":"",
"serve-dev":"USERNAME=alice PASSWORD=alice123 ENVIRONMENT=development SERVER_ROOT=\"http://${HOST:-localhost}:${PORT:-8080}\" 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"
}