-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 2.27 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
69
70
71
72
73
74
75
{
"name": "iet-ou/open-media-player-core",
"description": "Core of the Open Media Player. ©2016 The Open University, UK.",
"keywords": [ "ouplayer", "MediaPlayer", "audio", "video", "mediaelementjs", "oEmbed", "accessibility", "OpenUniversity", "IET-OU" ],
"homepage": "https://embed.open.ac.uk",
"type": "library",
"license": "GPL-3.0+",
"minimum-stability": "alpha",
"authors": [
{ "name": "Nick Freear (@nfreear)", "role": "developer" }
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/IET-OU/open-media-player/issues",
"source": "https://github.com/IET-OU/open-media-player-core"
},
"require": {
"php": ">=5.5.9",
"ext-curl": "*",
"ext-xml": "*",
"nfreear/plugin-genie": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.9",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"phpunit/phpunit": "~4.0"
},
"suggest": {
"iet-ou/open-media-player-themes": "^2.0; Open Media Player themes - CSS, Javascript & PHP"
},
"autoload": {
"psr-4": {
"IET_OU\\Open_Media_Player\\": [ "src", "src/providers", "src/Players" ]
},
"classmap": [ "src/third_party/" ]
},
"autoload-dev": {
"psr-4": {
"IET_OU\\Open_Media_Player\\Test\\": "tests",
"IET_OU\\Open_Media_Player\\Test\\Extend\\": "tests/extend",
"IET_OU\\Open_Media_Player\\Test\\Fixtures\\": "tests/fixtures"
}
},
"repositories": [
{
"type": "composer",
"url": "https://embed.open.ac.uk/iet-satis/"
}
],
"scripts": {
"test": [
"./vendor/bin/parallel-lint --exclude vendor .",
"phpcs --version",
"phpcs --standard=./phpcs.xml -n --encoding=utf-8 --extensions=php src/* tests/* && echo OK",
"phpunit"
],
"grep-ci": "grep -nri -e '>CI' -e 'CI->' -e '$CI' --exclude Base.php -- src/*",
"fix": [
"phpcbf --standard=./phpcs.xml -n -l --encoding=utf-8 --extensions=php tests/*"
]
},
"bin": [ "./bin/dyn-phpcs-xml.php" ],
"config": {
"x--preferred-install": "source"
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"//": [
"http://www.testically.org/2010/08/24/best-practice-how-to-ship-phpunit-configuration/",
"https://gist.github.com/nfreear/57262e040d49b2f212ec"
]
}
}