forked from portabilis/i-educar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
148 lines (148 loc) · 4.81 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "portabilis/i-educar",
"description": "Software livre de gestão escolar",
"type": "project",
"license": "GPL-2.0-or-later",
"version": "2.8.0",
"keywords": [
"Portabilis",
"i-Educar"
],
"homepage": "https://github.com/portabilis/i-educar",
"require": {
"php": "^8.1|^8.2",
"ext-gd": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pgsql": "*",
"ankurk91/laravel-eloquent-relationships": "^1.3",
"aws/aws-sdk-php-laravel": "^3.7",
"composer/semver": "^3.2",
"dex/composer-plug-and-play": "^0.18",
"dex/frontier": "^0.5.0",
"doctrine/dbal": "^3.3",
"google/recaptcha": "^1.2",
"guzzlehttp/guzzle": "^7.3",
"honeybadger-io/honeybadger-laravel": "^3.12",
"intervention/image": "^2.6",
"laravel/framework": "^10.3",
"laravel/horizon": "^5.15",
"laravel/sanctum": "^3.0",
"laravel/tinker": "^2.6",
"laravel/ui": "^4.2",
"league/csv": "^9.7",
"league/flysystem-aws-s3-v3": "^3.0",
"league/flysystem-ftp": "^3.0",
"league/flysystem-sftp-v3": "^3.0",
"maatwebsite/excel": "^3.1",
"nuwave/lighthouse": "^5",
"phpoffice/phpspreadsheet": "^1.8",
"predis/predis": "^1.1",
"psr/simple-cache": "^2.0",
"staudenmeir/laravel-adjacency-list": "^1.0",
"symfony/http-client": "^6.0",
"symfony/mailgun-mailer": "^6.0"
},
"require-dev": {
"beyondcode/laravel-dump-server": "^1.7",
"brianium/paratest": "^7.0",
"fakerphp/faker": "^1.15",
"filp/whoops": "^2.14",
"friendsofphp/php-cs-fixer": "^3.2",
"laravel/sail": "^1.0",
"laravel/telescope": "^4.7",
"mockery/mockery": "^1.4.3",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
"uderline/openapi-php-attributes": "^1.5"
},
"autoload": {
"classmap": [
"ieducar/intranet/include",
"ieducar/lib",
"ieducar/modules/*/Model",
"ieducar/modules/Avaliacao/Service",
"ieducar/modules/Avaliacao/Views",
"ieducar/modules/FormulaMedia/Validate"
],
"files": [
"ieducar/intranet/include/funcoes.inc.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Custom\\": "database/custom/",
"Database\\Seeders\\": "database/seeders/",
"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/telescope"
]
}
},
"scripts": {
"check-style": "vendor/bin/php-cs-fixer --diff --dry-run --verbose fix",
"fix-style": "vendor/bin/php-cs-fixer fix",
"openapi": "vendor/uderline/openapi-php-attributes/opag tests public/openapi.json",
"set-permissions": "find bootstrap/cache -type d -exec chmod 777 {} + && find storage -type d -exec chmod 777 {} +",
"new-install": [
"@composer install",
"@composer plug-and-play",
"@set-permissions",
"@php artisan key:generate --ansi",
"@php artisan storage:link --ansi",
"@php artisan migrate --force --ansi"
],
"update-install": [
"@composer update",
"@composer plug-and-play",
"@set-permissions",
"@php artisan storage:link --ansi",
"@php artisan migrate --force --ansi"
],
"post-install-cmd": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"php -r \"system('cp .github/hooks/pre-commit .git/hooks/pre-commit');\"",
"chmod ug+x .git/hooks/*"
],
"post-update-cmd": [
"php -r \"system('cp .github/hooks/pre-commit .git/hooks/pre-commit');\"",
"chmod ug+x .git/hooks/*"
],
"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,
"allow-plugins": {
"dex/composer-plug-and-play": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}