forked from portabilis/i-educar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
121 lines (121 loc) · 3.61 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
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
116
117
118
119
120
121
{
"name": "portabilis/i-educar",
"description": "Software livre de gestão escolar",
"type": "project",
"license": "GPL-2.0-or-later",
"version": "2.2.7",
"keywords": [
"Portabilis",
"i-Educar"
],
"homepage": "https://github.com/portabilis/i-educar",
"require": {
"php": "^7.2",
"ext-gd": "*",
"ext-json": "*",
"ext-pgsql": "*",
"cocur/slugify": "^3.1",
"composer/semver": "^1.4",
"cossou/jasperphp": "^2.7",
"doctrine/dbal": "^2.9",
"fideloper/proxy": "^4.0",
"google/recaptcha": "^1.2",
"guzzlehttp/guzzle": "^6.3",
"honeybadger-io/honeybadger-laravel": "^1.4",
"laravel/framework": "5.8.*",
"laravel/tinker": "^1.0",
"maatwebsite/excel": "^3.1",
"phpoffice/phpspreadsheet": "^1.6",
"predis/predis": "^1.1",
"prettus/l5-repository": "^2.6",
"swiftmailer/swiftmailer": "^6.1",
"tooleks/laravel-asset-version": "^1.0",
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-cached-adapter": "~1.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"beyondcode/laravel-dump-server": "^1.0",
"filp/whoops": "^2.0",
"friendsofphp/php-cs-fixer": "^2.13",
"fzaninotto/faker": "^1.4",
"laravel/dusk": "^5.1",
"laravel/telescope": "^2.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^3.0",
"phpunit/phpunit": "^7.5"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories",
"ieducar/intranet/include",
"ieducar/lib"
],
"files": [
"ieducar/intranet/include/funcoes.inc.php"
],
"psr-4": {
"App\\": "app/",
"iEducar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"tests/Unit"
]
},
"include-path": [
"ieducar",
"ieducar/intranet",
"ieducar/lib",
"ieducar/modules"
],
"extra": {
"laravel": {
"dont-discover": [
"laravel/dusk",
"laravel/telescope",
"barryvdh/laravel-debugbar"
]
}
},
"scripts": {
"check-style": "vendor/bin/php-cs-fixer --diff --dry-run --verbose fix",
"fix-style": "vendor/bin/php-cs-fixer fix",
"set-permissions": "find bootstrap/cache -type d -exec chmod 777 {} + && find storage -type d -exec chmod 777 {} +",
"new-install": [
"@composer install",
"@set-permissions",
"@php artisan key:generate --ansi",
"@php artisan legacy:link --ansi",
"@php artisan migrate --seed --force --ansi"
],
"update-install": [
"@composer install",
"@set-permissions",
"@php artisan legacy:link --ansi",
"@php artisan migrate --force --ansi"
],
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}