-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·44 lines (44 loc) · 1.1 KB
/
Copy pathcomposer.json
File metadata and controls
executable file
·44 lines (44 loc) · 1.1 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
{
"name": "igors/sorting-photos-by-date",
"type": "package",
"description":"Sorting Photos By Date",
"license": ["MIT"],
"authors": [
{
"name": "Igors Savins",
"email": "igor.savin@inbox.lv"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8",
"nesbot/carbon": "^2.53"
},
"require-dev": {
"phpro/grumphp": "dev-master",
"friendsofphp/php-cs-fixer": "^3.1",
"sebastian/phpcpd": "^6.0",
"ergebnis/composer-normalize": "dev-main",
"phpstan/phpstan": "0.12.x-dev",
"phpunit/phpunit": "^9.5",
"povils/phpmnd": "^2.4",
"squizlabs/php_codesniffer": "4.0.x-dev",
"vimeo/psalm": "4.x-dev"
},
"autoload": {
"psr-4": {
"SortingPhotosByDate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SortingPhotosByDate\\Tests\\": "tests/src"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}