-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.3 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
41
42
{
"name": "dmlogic/photo-indexer",
"type": "library",
"description": "Lookup albums from a Google Photos account and download them to local storage",
"keywords": ["laravel", "google photos"],
"license": "MIT",
"require": {
"php": "^8.0",
"google/apiclient": "^2.12",
"google/photos-library": "^1.7",
"intervention/image": "^2.7"
},
"require-dev": {
"laravel/framework": "^9.11",
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.2"
},
"extra": {
"laravel": {
"providers": [
"DmLogic\\GooglePhotoIndex\\Providers\\GooglePhotoIndexProvider"
]
}
},
"autoload": {
"psr-4": {
"DmLogic\\GooglePhotoIndex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"phpunit": "./vendor/bin/phpunit --testdox",
"phpcs": "./vendor/bin/php-cs-fixer fix -v --diff --allow-risky=yes --verbose --format=txt --dry-run",
"phpcs-fix": "docker-compose exec -T project ./vendor/bin/php-cs-fixer fix -v --diff --allow-risky=yes --verbose --format=txt",
"phpstan": "./vendor/bin/phpstan analyse ./src --level=0 --ansi"
}
}