forked from matthewbdaly/artisan-standalone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.38 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
{
"name": "matthewbdaly/artisan-standalone",
"description": "Allows you to use Artisan outside of a Laravel install",
"type": "library",
"keywords": ["laravel","lumen"],
"require-dev": {
"mockery/mockery": "^1.5",
"orchestra/testbench": "^8.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^10.0",
"psalm/plugin-laravel": "^2.8",
"psy/psysh": "^0.11.13",
"slevomat/coding-standard": "^7.2",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^5.8"
},
"bin": [
"artisan"
],
"license": "MIT",
"authors": [
{
"name": "Matthew Daly",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Matthewbdaly\\ArtisanStandalone\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Matthewbdaly\\ArtisanStandalone\\Providers\\ServiceProvider"
]
}
},
"require": {
"laravel/tinker": "^2.8"
}
}