-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.42 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
{
"name": "olssonm/ampersand",
"description": "Plug and play flat file markdown blog for your Laravel-projects",
"authors": [
{
"name": "Marcus Olsson",
"email": "contact@marcusolsson.me"
}
],
"license": "MIT",
"minimum-stability": "stable",
"require": {
"laravel/framework": "^9|^10|^11",
"spatie/sheets": "^1.10"
},
"require-dev": {
"orchestra/testbench": ">=6.15",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "<11",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Olssonm\\Ampersand\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Olssonm\\Ampersand\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --no-coverage",
"phpsniff": "vendor/bin/phpcs --standard=\"PSR12\" ./src --ignore=./src/resources/*",
"phpfix": "vendor/bin/phpcbf --standard=\"PSR12\" ./src --ignore=./src/resources/*",
"phpstan": "./vendor/bin/phpstan",
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"extra": {
"laravel": {
"providers": [
"Olssonm\\Ampersand\\AmpersandServiceProvider"
]
}
},
"prefer-stable": true,
"config": {
"sort-packages": true
}
}