generated from spatie/package-skeleton-laravel
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
74 lines (74 loc) · 2.12 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
{
"name": "dbfx/laravel-strapi",
"description": "Laravel wrapper for using the Strapi headless CMS",
"license": "MIT",
"keywords": [
"laravel",
"strapi",
"laravel-strapi",
"strapi-cms",
"laravel-package"
],
"authors": [
{
"name": "Dave Blakey",
"email": "dave@blakey.co",
"role": "Developer"
}
],
"homepage": "https://github.com/dbfx/laravel-strapi",
"require": {
"php": "^8.0",
"illuminate/contracts": "^8.37 || ^9.0 || ^10",
"laravel/framework": "^8 || ^9 || ^10",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"ergebnis/composer-normalize": "^2.42",
"friendsofphp/php-cs-fixer": "^3.48",
"nunomaduro/collision": "^5.3 || ^6.0",
"orchestra/testbench": "^6.15",
"phpro/grumphp-shim": "^1.13",
"phpunit/phpunit": "^9.3",
"rector/rector": "^0.19.5",
"roave/security-advisories": "dev-latest",
"spatie/laravel-ray": "^1.9",
"vimeo/psalm": "^5.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dbfx\\LaravelStrapi\\": "src",
"Dbfx\\LaravelStrapi\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Dbfx\\LaravelStrapi\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp-shim": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"LaravelStrapi": "Dbfx\\LaravelStrapi\\LaravelStrapiFacade"
},
"providers": [
"Dbfx\\LaravelStrapi\\LaravelStrapiServiceProvider"
]
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
}
}