-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.42 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.42 KB
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
{
"name": "mo3golom/wonder-stories",
"description": "Service for generating stories from source data",
"authors": [
{
"name": "Ilya Ponamarev",
"email": "ponamarev95@gmail.com"
}
],
"license": "MIT",
"homepage": "https://github.com/mo3golom/wonder-stories",
"require": {
"php": "^8.0",
"intervention/image": "^2.6",
"league/flysystem": "1.1.5",
"nesbot/carbon": "^2.52",
"php-ffmpeg/php-ffmpeg": "^0.18.0",
"vlucas/valitron": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^7.0",
"spatie/ray": "^1.28",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.8"
},
"autoload": {
"psr-4": {
"Mo3golom\\WonderStories\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Mo3golom\\WonderStories\\Tests\\": "tests"
}
},
"scripts": {
"check-style": "./vendor/bin/phpcs -p --standard=phpcs.xml src",
"fix-style": "./vendor/bin/phpcbf -p --standard=phpcs.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src",
"psalm": "./vendor/bin/psalm --config=psalm.xml --long-progress --php-version=7.4 --no-cache --show-info=true",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"composer-runtime-api": "^2.0"
}