-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.65 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.65 KB
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
{
"name": "tehwave/laravel-shortcodes",
"description": "Simple, elegant WordPress-like Shortcodes the Laravel way",
"keywords": [
"php",
"laravel",
"package",
"shortcodes",
"wordpress",
"tehwave"
],
"homepage": "https://github.com/tehwave/laravel-shortcodes",
"license": "MIT",
"authors": [
{
"name": "Peter Jørgensen",
"email": "peterchrjoergensen@gmail.com",
"homepage": "https://peterchrjoergensen.dk",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/console": "^12.0|^13.0",
"illuminate/support": "^12.0|^13.0",
"illuminate/database": "^12.0|^13.0",
"illuminate/encryption": "^12.0|^13.0"
},
"require-dev": {
"brianium/paratest": "^7.4",
"laravel/pint": "^1.21",
"orchestra/testbench": "^10.0|^11.0",
"phpunit/phpunit": "^11.5.50"
},
"autoload": {
"psr-4": {
"tehwave\\Shortcodes\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"tehwave\\Shortcodes\\Tests\\": "tests"
}
},
"scripts": {
"test": "@php vendor/bin/phpunit",
"coverage": "@php vendor/bin/phpunit --coverage-html coverage",
"sniff": "@php vendor/bin/pint --test",
"lint": "@php vendor/bin/pint",
"paratest": "@php vendor/bin/paratest"
},
"extra": {
"laravel": {
"providers": [
"tehwave\\Shortcodes\\Providers\\ShortcodesServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}