-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.53 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
{
"name": "asciito/laravel-package",
"description": "The simple package to build packages for Laravel",
"keywords": [
"laravel",
"package",
"tool",
"build"
],
"type": "library",
"authors": [
{
"name": "Ayax Córdova",
"email": "[email protected]"
}
],
"license": "MIT",
"require-dev": {
"orchestra/testbench": "^8.10",
"pestphp/pest": "^v1.23.1",
"pestphp/pest-plugin-laravel": "^1.4",
"laravel/pint": "^v1.13.1",
"spatie/pest-plugin-test-time": "^1.1",
"nunomaduro/larastan": "^2.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Asciito\\LaravelPackage\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Asciito\\LaravelPackage\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Tests\\": "workbench/tests/",
"Workbench\\Database\\Factories\\": "workbench/database/factories/",
"Workbench\\Database\\Seeders\\": "workbench/database/seeders/"
}
},
"extra": {
"laravel": {
"providers": [
"\\Asciito\\LaravelPackage\\LaravelPackageServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}