-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer-laravel.json
115 lines (109 loc) · 3.91 KB
/
composer-laravel.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ascio/ascio-framework",
"description": "PHP Framework for the Ascio-API. Sync, AutoQueue, Update, REST-API",
"authors": [
{
"name": "Manuel Lautenschlager",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.3.0",
"ext-pdo": "*",
"ext-soap": "*",
"doctrine/couchdb": "@dev",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"giggsey/libphonenumber-for-php": "^8.12",
"guzzlehttp/guzzle": "^7.0.1",
"inertiajs/inertia-laravel": "^0.2.11",
"io-developer/php-whois": "^4.0",
"laravel/framework": "^8.0",
"laravel/jetstream": "^1.1",
"laravel/sanctum": "^2.6",
"laravel/tinker": "^2.0",
"laravel/ui": "^2.3",
"livewire/livewire": "^2.0",
"phpoffice/phpspreadsheet": "^1.10",
"predis/predis": "^1.1",
"spatie/laravel-permission": "^3.17"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.9.1",
"kwn/php-rdkafka-stubs": "^1.0",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.4",
"rendermani/wsdl-client-generator": "*"
},
"autoload": {
"psr-4": {
"ascio\\service\\v3\\": "src/service/v3",
"ascio\\service\\v2\\": "src/service/v2",
"ascio\\service\\dns\\": "src/service/dns",
"ascio\\v2\\" : "src/lib/v2",
"ascio\\v3\\" : "src/lib/v3",
"ascio\\dns\\" : "src/lib/dns",
"ascio\\db\\" : "src/db",
"ascio\\db\\v3\\" : "src/db/v3",
"ascio\\db\\v2\\" : "src/db/v2",
"ascio\\db\\dns\\" : "src/db/dns",
"ascio\\api\\v3\\" : "src/api/v3",
"ascio\\api\\v2\\" : "src/api/v2",
"ascio\\api\\dns\\" : "src/api/dns",
"ascio\\base\\v3\\" : "src/base/v3",
"ascio\\base\\v2\\" : "src/base/v2",
"ascio\\base\\dns\\" : "src/base/dns",
"ascio\\base\\" : "src/base",
"ascio\\workflows\\" : "src/lib",
"ascio\\workflows\\custom\\" : "workflows",
"ascio\\lib\\" : ["src/lib","src/base"],
"ascio\\lib\\composer\\" : "src/lib",
"ascio\\logic\\v2\\" : "src/logic/v2",
"ascio\\logic\\v3\\" : "src/logic/v3",
"ascio\\logic\\dns\\" : "src/logic/dns",
"ascio\\logic\\" : "src/logic",
"ascio\\dns\\importer\\" : "src/apps/dns-importer",
"ascio\\validation\\" : "src/apps/validation",
"ascio\\migration\\" : "src/apps/migration",
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test" : "vendor/bin/phpunit --no-coverage --colors=always",
"update-classes" : "php bin/updates-classes.php",
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.dist', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}