-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 2.07 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
{
"name": "ht7/ht7-html",
"type": "library",
"description": "A PHP library to build HTML with OOP.",
"keywords": ["php", "ht7", "html"],
"homepage": "https://github.com/1stthomas/ht7-html",
"license": "GPL-3.0-only",
"authors": [
{
"name": "1stthomas",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Ht7\\Html\\": "src/"
}
},
"autoload-dev": {
"psr-4": {}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"support": {
"source": "https://github.com/1stthomas/ht7-html"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/1stthomas/ht7-base"
}
],
"require": {
"php": "^7.0",
"ht7/ht7-base": "master"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": ".\\vendor\\bin\\phpunit --configuration .\\tests\\configuration.xml --colors --testdox",
"test-unit": "php .\\vendor\\phpunit\\phpunit\\phpunit --colors --bootstrap .\\tests\\bootstrap.php --configuration .\\tests\\configuration.xml --testsuite \"ht7 html - unit\"",
"test-func": "php .\\vendor\\phpunit\\phpunit\\phpunit --colors --bootstrap .\\tests\\bootstrap.php --configuration .\\tests\\configuration.xml --testsuite \"ht7 html - functional\"",
"test-unit1": "C:\\dev\\PHP\\current\\php.exe \"C:\\data\\edv\\php\\misc\\ht7-html\\vendor\\phpunit\\phpunit\\phpunit\" \"--colors\" \"--log-junit\" \"C:\\Users\\zoom4u\\AppData\\Local\\Temp\\nb-phpunit-log.xml\" \"--bootstrap\" \"C:\\data\\edv\\php\\misc\\ht7-html\\tests\\bootstrap.php\" \"--configuration\" \"C:\\data\\edv\\php\\misc\\ht7-html\\tests\\configuration.xml\" \"--coverage-clover\" \"C:\\Users\\zoom4u\\AppData\\Local\\Temp\\nb-phpunit-coverage.xml\" \"C:\\Program Files\\NetBeans-11.2\\netbeans\\php\\phpunit\\NetBeansSuite.php",
"phpv": "php -v"
}
}