-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.51 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
58
59
{
"name": "mvdnbrk/tailwind-colors.com",
"type": "project",
"description": "Source code for the tailwind-colors.com website.",
"keywords": [
"tailwindcss",
"tailwind",
"colors"
],
"homepage": "https://tailwind-colors.com",
"license": "MIT",
"authors": [
{
"name": "Mark van den Broek",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"facade/ignition": "^2.8",
"fideloper/proxy": "^4.4",
"laravel/framework": "^8.44",
"laravel/tinker": "^2.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"fakerphp/faker": "^1.14",
"mockery/mockery": "^1.3",
"nunomaduro/collision": "^5.4",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/App",
"Domain\\": "src/Domain"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit"
}
}