-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 946 Bytes
/
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
{
"name": "slince/cakephp-pjax",
"description": "A pjax middleware for CakePHP 3",
"type":"cakephp-plugin",
"keywords": [
"cakephp",
"cakephp-pjax",
"pjax"
],
"homepage": "https://github.com/slince/cakephp-pjax",
"license": "MIT",
"authors": [
{
"name": "Taosikai",
"email": "taosikai@yeah.net",
"homepage": "https://www.phpdish.com"
}
],
"require": {
"php" : ">=5.6.0",
"cakephp/cakephp": "^3.0",
"symfony/dom-crawler": "^2.7|^3.0",
"symfony/css-selector": "^2.7|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.0|^6.0"
},
"autoload": {
"psr-4": {
"Slince\\Pjax\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Slince\\Pjax\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}