-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.27 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
{
"name": "atmos4/intranose-v2",
"type": "project",
"license": "MIT",
"require": {
"doctrine/orm": "^2.11.0",
"symfony/cache": "^5.4",
"doctrine/migrations": "^3.6",
"phpmailer/phpmailer": "^6.8",
"ramsey/uuid": "^4.7",
"vlucas/phpdotenv": "^5.5",
"monolog/monolog": "^3.4",
"erusev/parsedown": "^1.7",
"minishlink/web-push": "^9.0",
"google/apiclient": "^2.15.0"
},
"autoload": {
"classmap": [
"database/models/",
"engine/core/",
"engine/validation/",
"app/services",
"engine/api/"
],
"files": [
"engine/helpers.php"
]
},
"scripts": {
"sync": [
"@composer install",
"@db:migrate"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 server.php"
],
"d": "@composer dump-autoload",
"seed": "php bin/seed",
"db:migrate": "@php bin/doctrine --no-interaction migrations:migrate",
"db:diff": "@php bin/doctrine --no-interaction migrations:diff",
"test": "@php bin/phpunit",
"pre-autoload-dump": "Google\\Task\\Composer::cleanup"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"doctrine/data-fixtures": "^1.7"
},
"extra": {
"google/apiclient-services": [
"Calendar"
]
}
}