Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshuaestes/puppet-php
Puppet module to manage PHP, Can be installed with composer.
https://github.com/joshuaestes/puppet-php
Last synced: 1 day ago
JSON representation
Puppet module to manage PHP, Can be installed with composer.
- Host: GitHub
- URL: https://github.com/joshuaestes/puppet-php
- Owner: JoshuaEstes
- License: mit
- Created: 2013-05-13T03:58:42.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-22T23:03:44.000Z (over 10 years ago)
- Last Synced: 2024-11-08T05:41:48.342Z (about 2 months ago)
- Language: Puppet
- Homepage:
- Size: 203 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- License: LICENSE
Awesome Lists containing this project
README
# PHP Puppet Module
# Install using composer
This module can be installed using composer. You will need to define the
repository and require this module. For more information on using composer
to install puppet modules see [github.com/JoshuaEstes/ComposerInstallerPuppet](https://github.com/JoshuaEstes/ComposerInstallerPuppet)....
"repositories": [
...
{
"type": "git",
"url": "git://github.com/JoshuaEstes/puppet-php.git"
}
],
"require": {
...
"joshuaestes/puppet-php": "*"
},
"extra": {
...
"puppet": {
"modules_path": "app/Resources/puppet/modules"
}
},
...# Basic Usage
class { 'php': }
# Installing PHP Modules
class { 'php::mod::apc': }
# License
Copyright (C) 2013 Joshua Estes
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.