-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 886 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
{
"name": "redbull/bst-sio-a-2022-quizziz-backend",
"autoload": {
"psr-4": {
"Quizz\\": "src/"
}
},
"authors": [
{
"name": "Benoit Foujols",
"email": "benoit@foujols.com"
}
],
"require": {
"vlucas/phpdotenv": "^5.4",
"twig/twig": "^3.3",
"nikic/fast-route": "^1.3",
"ext-pdo": "*"
},
"scripts": {
"start": [ "Composer\\Config::disableProcessTimeout",
"php -S localhost:8042 -t public"
],
"test": "php vendor/bin/phpunit --testdox tests",
"docker-start": "docker compose up -d",
"docker-stop": "docker compose down"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9"
},
"config": {
"process-timeout":0
}
}