-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.73 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
{
"name": "pickles2/px-fw-2.x",
"description": "Pickles Framework(PxFW) は、静的で大きなウェブサイトを効率よく構築できる オープンソースのHTML生成ツールです。",
"keywords": ["pickles2","pickles"],
"license": "MIT",
"authors": [
{
"name": "Tomoya Koyanagi",
"email": "tomk79@gmail.com"
}
],
"scripts":{
"start": [
"@php -S \"localhost:8080\" -t \"./\" \"./px-files/_sys/serve/route.php\""
],
"start-pub": [
"@php -S \"localhost:8081\" -t \"./px-files/dist/\" \"./px-files/_sys/serve/route_pub.php\""
],
"test": [
"@php ./vendor/phpunit/phpunit/phpunit"
] ,
"documentation": [
"@php ./phpDocumentor.phar --title \"Pickles Framework v2.1.21 API Document\" -d \"./php/\",\"./theme/php/\" -t \"./docs/\""
]
} ,
"minimum-stability": "dev",
"config": {
"process-timeout": 0
},
"repositories": [
],
"require": {
"php": ">=7.3.0" ,
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"tomk79/filesystem": "~1.1",
"tomk79/request": "~1.4",
"michelf/php-markdown": "~1.6",
"scssphp/scssphp": "^1.4"
},
"autoload": {
"psr-4": {
"picklesFramework2\\": [
"php"
],
"picklesFramework2\\theme\\": [
"theme/php"
]
}
},
"require-dev": {
"phpunit/phpunit": "~9.5"
},
"autoload-dev": {
"psr-4": {
"picklesFramework2\\tests\\": [
"tests/libs"
]
}
}
}