-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.45 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.45 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mitydigital/feedamic",
"description": "A fully-featured RSS and Atom feed generator for Statamic.",
"type": "statamic-addon",
"keywords": [
"statamic",
"rss",
"atom"
],
"autoload": {
"psr-4": {
"MityDigital\\Feedamic\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\": "tests/__fixtures__/app",
"MityDigital\\Feedamic\\Tests\\": "tests"
}
},
"license": "MIT",
"authors": [
{
"name": "Marty Friedel"
}
],
"require": {
"statamic/cms": "^5.59|^6.0"
},
"require-dev": {
"laravel/pint": "^1.10",
"doctrine/dbal": "^3.6",
"spatie/laravel-ray": "^1.33",
"pestphp/pest": "^4.0",
"orchestra/testbench": "^10.0",
"pestphp/pest-plugin-laravel": "^4.0"
},
"suggest": {
"ext-xmlreader": "Required for XML parsing features in this package",
"ext-xmlwriter": "Required for XML generation features in this package"
},
"extra": {
"statamic": {
"name": "Feedamic",
"description": "A fully-featured RSS and Atom feed generator for Statamic."
},
"laravel": {
"providers": [
"MityDigital\\Feedamic\\ServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"pixelfear/composer-dist-plugin": true
}
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"test": [
"php -d memory_limit=-1 -d max_execution_time=0 ./vendor/bin/pest"
]
}
}