This repository was archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.94 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.94 KB
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
{
"name": "vitexsoftware/ease-framework",
"description": "An PHP Framework for Ease of writing Applications",
"authors": [
{
"name": "Vítězslav Dvořák",
"email": "info@vitexsoftware.cz",
"homepage": "http://v.s.cz/"
}
],
"autoload": {
"psr-4": {
"Ease\\": "src/Ease/",
"Ease\\Logger\\": "src/Ease/Logger",
"Ease\\Html\\": "src/Ease/Html",
"Ease\\JQuery\\": "src/Ease/JQuery",
"Ease\\SQL\\": "src/Ease/SQL",
"Ease\\TWB\\": "src/Ease/TWB"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\Local\\": "tests",
"Test\\Ease\\": "tests/src/Ease",
"Test\\Ease\\Logger\\": "tests/src/Ease/Logger",
"Test\\Ease\\Html\\": "tests/src/Ease/Html",
"Test\\Ease\\JQuery\\": "tests/src/Ease/JQuery",
"Test\\Ease\\SQL\\": "tests/src/Ease/SQL",
"Test\\Ease\\TWB\\": "tests/src/Ease/TWB",
"Ease\\Example\\TWB\\": "Examples/TWB/classes",
"Test\\Ease\\Codeception\\": "tests/_support/_generated/"
}
},
"conflict": {
"vitexsoftware/ease-core": "*",
"vitexsoftware/ease-html": "*",
"vitexsoftware/ease-twbootstrap": "*"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.6",
"ext-pdo": "*",
"pear/mail": "*",
"pear/mail_mime": "*"
},
"require-dev": {
"apigen/apigen": ">=4",
"robmorgan/phinx": "^0.9",
"phpunit/php-token-stream": ">=1.4",
"phpunit/phpunit": "^6",
"mockery/mockery": "^1.1",
"squizlabs/php_codesniffer": "^3.2",
"php-coveralls/php-coveralls": "^2",
"jakub-onderka/php-parallel-lint": "^1",
"jakub-onderka/php-console-highlighter": "*"
},
"type": "library",
"homepage": "http://v.s.cz/ease.php",
"license": "GPL-2.0-or-later"
}