-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.03 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"autoload": {
"psr-4": {
"TFD\\Cloudinary\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"TFD\\Cloudinary\\ServiceProvider"
]
},
"statamic": {
"description": "21st digital Statamic Cloudinary addon",
"name": "21st digital Cloudinary Tag"
}
},
"license": "MIT",
"name": "tfd/statamic-cloudinary",
"require": {
"statamic/cms": "^5.73.11 || ^6.6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.36",
"pestphp/pest-plugin-laravel": "^2.4",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts": {
"lint": "@php ./vendor/bin/php-cs-fixer fix -v --config .php-cs-fixer.php",
"test": "@php ./vendor/bin/pest"
}
}