-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (67 loc) · 1.72 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
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": "aerni/apple-news",
"description": "A Statamic addon to publish your collection entries on Apple News.",
"keywords": [
"statamic",
"apple",
"news",
"apple news"
],
"homepage": "https://github.com/aerni/statamic-apple-news",
"license": "proprietary",
"authors": [
{
"name": "Michael Aerni",
"email": "hello@michaelaerni.ch",
"homepage": "https://michaelaerni.ch",
"role": "Developer"
}
],
"require": {
"php": "^7.4 | ^8.0",
"chapter-three/apple-news-api": "^0.3.11",
"spatie/laravel-ray": "^1.24",
"statamic/cms": "^3.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"nunomaduro/collision": "^5.4",
"orchestra/testbench": "^6.17",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Aerni\\AppleNews\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Aerni\\AppleNews\\Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"statamic": {
"name": "Apple News",
"description": "Publish your collection entries on Apple News."
},
"laravel": {
"providers": [
"Aerni\\AppleNews\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}