-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.08 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "sticknologic/snl-typed-js",
"description": "Blade component to render typing animation using Typed.js library",
"type": "library",
"license": "GPL-3.0-or-later",
"keywords": ["laravel", "blade", "component", "typed", "typing-animation"],
"authors": [
{
"name": "John Aerial J. Azcune",
"email": "JohnAerial.packagist@sticknologic.is-a.dev",
"homepage": "https://sticknologic.is-a.dev",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"SticknoLogic\\SnlType\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SticknoLogic\\SnlType\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"SticknoLogic\\SnlType\\SnlTypeServiceProvider"
]
}
},
"require": {
"php": "^8.1",
"laravel/framework": "^10.0|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpunit/phpunit": "^10.0|^11.0"
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html build/coverage"
}
}