-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
87 lines (87 loc) · 2.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "astrotomic/stancy",
"type": "library",
"description": "This package aims to provide the most common and flexible CMS features to your Laravel project.",
"keywords": [
"laravel",
"stancy",
"astrotomic",
"cms"
],
"homepage": "https://astrotomic.info",
"license": "MIT",
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://gummibeer.de",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"facade/ignition-contracts": "^1.0",
"illuminate/support": "^6.0",
"spatie/data-transfer-object": "^1.9.1",
"spatie/laravel-export": "^0.2.2",
"spatie/laravel-feed": "^2.6",
"spatie/laravel-sitemap": "^5.5",
"spatie/sheets": "^1.4",
"symfony/yaml": "^4.0"
},
"require-dev": {
"mockery/mockery": "^1.2.3",
"nunomaduro/phpinsights": "^1.10",
"orchestra/testbench": "^4.0",
"phpmd/phpmd": "^2.7",
"phpunit/phpunit": "^8.3",
"spatie/phpunit-snapshot-assertions": "^2.2"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Astrotomic\\Stancy\\StancyServiceProvider"
],
"aliases": {
"ExportFactory": "Astrotomic\\Stancy\\Facades\\ExportFactory",
"FeedFactory": "Astrotomic\\Stancy\\Facades\\FeedFactory",
"PageFactory": "Astrotomic\\Stancy\\Facades\\PageFactory",
"SitemapFactory": "Astrotomic\\Stancy\\Facades\\SitemapFactory"
}
}
},
"autoload": {
"psr-4": {
"Astrotomic\\Stancy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Astrotomic\\Stancy\\Tests\\": "tests/",
"Astrotomic\\Stancy\\Tests\\PageDatas\\": "tests/resources/dtos"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"phpinsights": "vendor/bin/phpinsights analyse ./src/ --format=console --no-interaction --min-quality=95 --min-complexity=50 --min-architecture=100 --min-style=100 -v",
"phpmd": "vendor/bin/phpmd ./src/ text phpmd.xml",
"phpunit": "vendor/bin/phpunit --colors=always",
"phpunit-coverage": "vendor/bin/phpunit --colors=always --coverage-html=build",
"test": [
"@phpmd",
"@phpinsights",
"@phpunit"
]
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/Astrotomic/stancy/issues",
"source": "https://github.com/Astrotomic/stancy",
"docs": "https://docs.astrotomic.info/stancy"
}
}