-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.23 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
{
"name": "adhocmusic/adhocmusic.com",
"description": "adhocmusic.com",
"type": "project",
"license": "proprietary",
"require": {
"php": ">=8.4",
"phpmailer/phpmailer": "6.9.3",
"pear/console_table": "1.3.1",
"eluceo/ical": "2.14.0",
"twig/twig": "3.18.0",
"twig/intl-extra": "3.18.0"
},
"authors": [
{
"name": "Guillaume Seznec",
"email": "guillaume@seznec.fr",
"homepage": "https://guillaume.seznec.fr",
"role": "Developer"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "3.11.2",
"phpunit/phpunit": "11.5.2",
"phpstan/phpstan": "2.1.0",
"phpstan/phpstan-strict-rules": "2.0.1",
"friendsoftwig/twigcs": "6.5.0"
},
"scripts": {
"http": [
"Composer\\Config::disableProcessTimeout",
"php -S 0.0.0.0:8080 -t www/public"
],
"stan": "./vendor/bin/phpstan analyse --memory-limit 512M",
"pcs": "./vendor/bin/phpcs --standard=PSR12 --colors ./src ./www",
"tcs": "./vendor/bin/twigcs ./www/views ./www/views",
"unit": "./vendor/bin/phpunit",
"eslint": "./node_modules/.bin/eslint"
}
}