-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.63 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
{
"name": "oneago/arcturus-project",
"description": "Arcturus project is an Oneago open source project for easy and quick php projects",
"type": "project",
"keywords": ["arcturus", "oneago", "php", "basic", "template", "project", "sass", "docker", "framework", "sass", "angular", "typescript"],
"license": "GPL-3.0-only",
"authors": [
{
"name": "jruedaq",
"email": "[email protected]",
"homepage": "https://www.juandavid.dev",
"role": "Developer"
},
{
"name": "jyarar",
"email": "[email protected]",
"homepage": "https://www.jairyara.com",
"role": "Developer"
},
{
"name": "Oneago",
"email": "[email protected]",
"homepage": "https://www.oneago.com/",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.4",
"ext-pdo": "*",
"ext-zip": "*",
"twig/twig": "^3.3",
"symfony/twig-bridge": "^6.1",
"robmorgan/phinx": "^0.12",
"vlucas/phpdotenv": "^5.3",
"oneago/arcturus-core": "^5.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"filp/whoops": "^2.14",
"phpunit/phpunit": "^9.5",
"symfony/console": "^6.1",
"fakerphp/faker": "^1.13",
"symfony/var-dumper": "^6.1"
},
"autoload": {
"psr-4": {
"App\\Config\\": "config/",
"App\\": "app/"
},
"files": [
"app/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"@postInstall"
],
"postInstall": [
"php postinit"
]
}
}