-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "asgardcms/block",
"type": "asgard-module",
"description": "A module to create small blocks of content to display anywhere on the site.",
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/AsgardCms/Block/issues",
"source": "https://github.com/AsgardCms/Block"
},
"require": {
"php": "^7.3",
"composer/installers": "~1.0",
"idavoll/core-module": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "^6.2",
"fzaninotto/faker": "^1.9.1",
"friendsofphp/php-cs-fixer": "^2.16",
"mockery/mockery": "^1.3.1"
},
"autoload-dev": {
"psr-4": {
"Modules\\Block\\": ".",
"Modules\\": "Modules/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}