-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
74 lines (74 loc) · 1.67 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
{
"name": "sifophp/sifo",
"description": "SIFO framework.",
"type": "project",
"keywords": [
"php",
"framework"
],
"homepage": "https://github.com/sifophp/SIFO",
"license": "Apache-2.0",
"authors": [
{
"name": "Albert Lombarte",
"email": "alombarte@gmail.com",
"role": "creator"
}
],
"support": {
"issues": "https://github.com/sifophp/SIFO/issues"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sifophp/sifoweb.git"
}
],
"require": {
"php": "^7.3|^7.4",
"adodb/adodb-php": "^5.21",
"geoip/geoip": "^1.17",
"neutron/sphinxsearch-api": "^2.0",
"phpmailer/phpmailer": "^6.5",
"psr/container": "^1.0",
"smarty/smarty": "^3.1.45",
"symfony/dotenv": "^3.3.1|^4.3.1|^5.0.1",
"symfony/yaml": "^3.2|^4.3.1|^5.0.1",
"tpyo/amazon-s3-php-class": "^0.5",
"twig/extensions": "^1.4",
"twig/twig": "^2.15",
"weotch/phpthumb": "^1.0.5"
},
"require-dev": {
"adlawson/vfs": "^0.12.1",
"mikey179/vfsstream": "^1.6",
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^9.5",
"sifophp/sifo-common-instance": "@dev",
"sifophp/sifoweb": "@dev",
"squizlabs/php_codesniffer": "^3.6",
"symfony/var-dumper": "^5.4"
},
"scripts": {
"cs-check": "phpcs src --colors",
"cs-fix": "phpcbf src --colors"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Sifo\\": "src/Sifo/"
},
"classmap" : [
"src/Sifo"
]
},
"autoload-dev": {
"psr-4": {
"Sifo\\Test\\": "test/",
"Sifo\\Example\\": "instances/example/"
}
}
}