-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"name": "vitexsoftware/ease-twbootstrap",
"description": "Set of Twitter Bootstrap 3 rendering objects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vítězslav Vitex Dvořák",
"email": "info@vitexsoftware.cz"
}
],
"minimum-stability": "stable",
"require": {
"vitexsoftware/ease-html": "^1.40"
},
"autoload": {
"psr-4": {
"Ease\\TWB\\": "src/Ease/TWB/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Ease\\": ["vendor/vitexsoftware/ease-core/tests/src/Ease", "vendor/vitexsoftware/ease-html/tests/src/Ease/"],
"Test\\Ease\\Html\\": "vendor/vitexsoftware/ease-html/tests/src/Ease/Html/",
"Test\\Ease\\TWB\\": "testing/src/Ease/TWB/",
"Test\\": "testing/",
"Example\\Ease\\TWB\\": "Examples"
}
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.65",
"ergebnis/composer-normalize": "^2.45",
"ergebnis/php-cs-fixer-config": "^6.39"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}