-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 824 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 824 Bytes
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
{
"name": "ardillo/examples",
"description": "Ardillo Example Apps",
"version": "0.1.0",
"license": "MIT",
"type": "project",
"require": {
"ardillo/loop": "^0.1.0",
"react/dns": "^1.11",
"fakerphp/faker": "^1.23"
},
"autoload": {
"psr-4": {
"Ardillo\\Examples\\": "src/"
}
},
"require-dev": {
"phpstan/phpstan": "^1.9",
"vimeo/psalm": "^5.24"
},
"suggest": {
"ext-gd": "For running image converter"
},
"scripts": {
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan analyse -c ./etc/phpstan.neon -n -vvv --ansi --debug --level=max src bin",
"psalm": "php -d memory_limit=-1 ./vendor/bin/psalm --config=./etc/psalm.xml --no-cache --no-file-cache --show-info=true"
}
}