forked from code16/sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.26 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
{
"name": "code16/sharp",
"description": "Laravel Content Management Framework",
"authors": [{
"name": "Philippe Lonchampt",
"email": "[email protected]"
}, {
"name": "Antoine Guingand",
"email": "[email protected]"
}],
"require": {
"php": "^8.0",
"laravel/framework": "^8.64|^9.0",
"intervention/image": "^2.5",
"spatie/image-optimizer": "^1.2",
"league/commonmark": "^2.0"
},
"require-dev": {
"brianium/paratest": "^6.3",
"dms/phpunit-arraysubset-asserts": "^0.2.0",
"doctrine/dbal": "~2.5",
"friendsofphp/php-cs-fixer": "^3.8",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^5.4|^6.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.5",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"files": [
"src/sharp_helper.php"
],
"psr-4": {
"Code16\\Sharp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Code16\\Sharp\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/testbench package:test --parallel"
},
"extra": {
"laravel": {
"providers": [
"Code16\\Sharp\\SharpServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}