-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.52 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
{
"name": "haltuf/web-project-docker",
"description": "Nette: Standard Web Project in Docker",
"keywords": ["nette", "docker"],
"type": "project",
"license": ["MIT", "BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
"require": {
"php": ">= 7.2",
"nette/application": "^3.1",
"nette/bootstrap": "^3.1",
"nette/caching": "^3.1",
"nette/database": "^3.1",
"nette/di": "^3.0",
"nette/finder": "^2.5",
"nette/forms": "^3.1",
"nette/http": "^3.1",
"nette/mail": "^3.1",
"nette/robot-loader": "^3.3",
"nette/security": "^3.1",
"nette/utils": "^3.2",
"latte/latte": "^2.9",
"tracy/tracy": "^2.8",
"contributte/console": "^0.9.1",
"nettrine/annotations": "^0.7.0",
"nettrine/cache": "^0.3.0",
"nettrine/migrations": "^0.8.0",
"nettrine/fixtures": "^0.6.1",
"nettrine/dbal": "^0.7.0",
"nettrine/orm": "^0.8.3",
"nettrine/extensions-atlantic18": "^0.6.0",
"ramsey/uuid": "^4.2"
},
"require-dev": {
"symfony/thanks": "^1",
"nette/tester": "^2.4"
},
"autoload": {
"psr-4": {
"Eshop\\": "app",
"Eshop\\Tests\\": "tests",
"Eshop\\Console\\": "bin/Console"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"symfony/thanks": true
}
},
"scripts": {
"startup": [
"wait-for-it eshop_db:3306 -t 60",
"composer install",
"php bin/console.php migrations:migrate --no-interaction",
"php bin/console.php eshop:create-user MichalHaltuf [email protected] administrator test --no-interaction",
"php bin/console.php doctrine:fixtures:load -n --append --no-interaction"
]
}
}