-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.15 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
{
"name": "codions/laravel-themes-installer",
"type": "composer-plugin",
"license": "MIT",
"support": {
"issues": "https://github.com/codions/laravel-themes-installer/issues",
"source": "https://github.com/codions/laravel-themes-installer"
},
"authors": [
{
"name": "Fábio Assunção",
"email": "fabio23gt@gmail.com"
}
],
"autoload": {
"psr-0": {
"Codions\\LaravelThemeInstaller\\": "src/"
},
"psr-4": {
"Codions\\LaravelThemeInstaller\\": "src"
}
},
"extra": {
"class": "Codions\\LaravelThemeInstaller\\ThemeInstallerPlugin"
},
"require-dev": {
"composer/composer": "^1.3|^2.2.12",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^7.0|^8.0|^9.0"
},
"require": {
"composer-plugin-api": "^1.1|^2.0",
"php": "^7.3|^8.0"
},
"scripts": {
"test": "vendor/bin/phpunit",
"test:windows": "vendor\\bin\\phpunit",
"check-style": "vendor/bin/phpcs --extensions=php ./src",
"fix-style": "vendor/bin/phpcbf --extensions=php ./src"
}
}