-
Notifications
You must be signed in to change notification settings - Fork 99
/
composer.json
56 lines (56 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
53
54
55
56
{
"name": "streams/core",
"type": "streams-addon",
"description": "A domain-driven, code-configured, flat-file application platform for Laravel.",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Ryan Thompson",
"email": "[email protected]"
}
],
"require": {
"symfony/yaml": "^6.0",
"jenssegers/agent": "^2.6",
"tmarois/filebase": "^1.0",
"laravel/scout": "^10|^11",
"intervention/image": "^2.7",
"laravel/framework": "^10|^11",
"goldspecdigital/oooas": "^2.10",
"nicmart/string-template": "^0.1",
"laravelcollective/html": "^6.3",
"spatie/laravel-html": "^3.3",
"ezyang/htmlpurifier": "^4.16"
},
"require-dev": {
"streams/testing": "^1.0",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.9"
},
"autoload": {
"psr-4": {
"Streams\\Core\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Streams\\Core\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"laravel": {
"providers": [
"Streams\\Core\\StreamsServiceProvider"
]
}
}
}