-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 1.11 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
{
"name": "tfhinc/ci-newton",
"description": "Simply Observe - Newton allows you to Subscribe and Listen for Event Broadcasts in the Codeigniter framework.",
"keywords": ["codeigniter", "ci-newton", "newton", "php", "listener", "event", "broadcast"],
"homepage": "https://github.com/TFHInc/ci-newton",
"license": "MIT",
"authors": [
{
"name": "Colin Rafuse",
"email": "[email protected]",
"homepage": "http://colinrafuse.com",
"role": "Developer"
}
],
"require": {
"php" : ">=7.1.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*"
},
"autoload": {
"psr-4": {
"TFHInc\\Newton\\": "src"
}
},
"scripts": {
"publish-files": [
"@php -r \"copy('src/Config/newton.php', '../../../application/config/newton.php');\"",
"@php -r \"copy('src/Libraries/Newton.php', '../../../application/libraries/Newton.php');\"",
"@php -r \"copy('src/Helpers/newton_helper.php', '../../../application/helpers/newton_helper.php');\""
]
}
}