-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 966 Bytes
/
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
{
"name": "archey347/uf_blog",
"type": "userfrosting-sprinkle",
"description": "Blog Sprinkle for Userfrosting",
"license" : "MIT",
"authors" : [
{
"name": "Archey Barrell"
}
],
"require": {
"php": "^8.0",
"userfrosting/framework": "~5.1.0",
"userfrosting/sprinkle-core": "~5.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-mockery": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.2",
"league/factory-muffin": "^3.0",
"league/factory-muffin-faker": "^2.0"
},
"autoload": {
"psr-4": {
"UserFrosting\\Sprinkle\\Blog\\": "app/src/"
}
}
}