This repository has been archived by the owner on Sep 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
68 lines (68 loc) · 1.8 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
64
65
66
67
68
{
"name": "pelmered/wp-pjax",
"description": "Makes Wordpress use the PJAX (PushState + AJAX) technique for loading content",
"homepage": "https://github.com/pelmered/wp-pjax",
"type": "wordpress-plugin",
"license": "GPL-2.0+",
"authors": [
{
"name": "Peter Elmered",
"email": "[email protected]",
"homepage": "http://www.elmered.com"
},
{
"name": "Nerijus Eimanavičius",
"email": "[email protected]",
"homepage": "http://nerijus.eimanavicius.lt"
}
],
"require": {
"php": ">=5.3.3"
},
"autoload": {
"psr-0": {
"": "src/"
},
"classmap": [
"inc/",
"views/settingsmenu.php"
],
"files": [
"inc/define.php"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "wordpress/phpunit",
"version": "master",
"source": {
"type": "svn",
"url": "https://develop.svn.wordpress.org/trunk/tests/phpunit/",
"reference": "includes"
}
}
},
{
"type": "package",
"package": {
"name": "wordpress/wordpress",
"version": "4.4.2",
"source": {
"type": "svn",
"url": "https://develop.svn.wordpress.org/tags/4.4.2/",
"reference": "src"
}
}
}
],
"require-dev": {
"wordpress/wordpress": "^4.4",
"phpunit/phpunit": "^4.8",
"wordpress/phpunit": "dev-master"
},
"scripts": {
"test": "phpunit"
}
}